Most HTML pages can be made from just a few tags and styled anyway you want. The browser's default visual representation of most HTML elements consist of varying font styles, margins, padding and, essentially, display types. The display property lets you define how a certain HTML element should be displayed.
The display property can have the following possible values:
The three most fundamental values are block, inline and none.
block - puts a line break before and after the element.
Block behavior is exhibited by such HTML elements as BLOCKQUOTEs, DIVs, Headings and Paragraphs.
inline - elements that are displayed inline follow the flow of a line. Strong, anchor and emphasis elements are traditionally displayed inline.
none - this value turns off the display of an element (it has no effect on layout); all child elements also have their display turned off unconditionally. The document is rendered as though the element did not exist in the document tree.
130/11/05 - CSS Gallery
New CSS gallery featuring sites designed using cascading style sheets.
15/08/04 - CSS print media
Help and tutorial exploring the use of cascading style sheets to control the output of your web pages to printers