Hypixel SkyBlock Wiki
Advertisement

.test {

   color: red;

}

Feather
Information Page
An information page describes the wiki's customs, technicalities or practices.


Page Styles are a custom JS feature that allows for embedding of CSS into a page via pageStyles classed elements. Be aware it has several limitations due to security risks, the following CSS features are disabled:

  • @font-face
  • url()
  • expression()
  • @import

Example[]

When the following code is present in a page, elements of class test will be colored red. For example, this element will be affected. <div class="pageStyles"> .test { color: red; } </div>

Advertisement