Layout Options

  • Fixed Header
    Makes the header top fixed, always visible!
  • Fixed Sidebar
    Makes the sidebar left fixed, always visible!
Universal Selector

Description

The universal selector matches any element type.

This selector has the form:

* {
  properties
}

Examples

This example eliminates the margin from every element in the document.

* {
  margin:0;
}

Browser Support

Chrome Firefox IE Safari Opera

Miscellaneous Information

Defined In: CSS2