First page Back Continue Last page Graphics
CSS Basics
To properly see the effects of the Style Sheets, your visitors will need to use a web browser that is version 4.0 or newer. Fortunately, using CSS does not cause web pages to break when viewed on older browsers; however, the styles won’t appear as defined. Since most people these days use Internet Explorer 6, Netscape 7, or Firefox 1 or newer, most browsers can properly display CSS.
CSS-aware browsers apply their own stylesheet for every HTML element as the first set of rules in the cascade, and this set of rules form the default display for every element. For example, most browsers treat the <p> tag as a block element, as though there were the explicit declaration
p { display: block;} By using CSS, you modify the default settings by overriding these implicit styles with an explicit declaration.
By using CSS, you can also control text formatting and location on the page. Using CSS can eliminate the need for tables as a layout tool. With CSS, logos can be created using just text, instead of having to rely on graphics. This makes pages more accessible to a wider audience.