Cascading Style Sheets

From Conservapedia
This is an old revision of this page, as edited by Bravearm (talk | contribs) at 18:03, October 2, 2007. It may differ significantly from current revision.
Jump to navigation Jump to search

Cascading Style Sheets (CSS) are used with HTML to give a web page designers centralized control over the appearance of each page.

Example

To change the size of all text in an HTML document to 18 points:

<head>

<style type="text/css">
body { font-size: 18pt; }
</style>

</head>