Difference between revisions of "Cascading Style Sheets"

From Conservapedia
Jump to navigation Jump to search
m (CSS moved to Cascading Style Sheets: expand abbrev.)
(used with HTML to give a web page designers centralized control over the appearance of each page)
Line 1: Line 1:
−
'''CSS''' stands for Cascading Style Sheets.  This brings a much finer degree of control over appearance to a web page. [http://www.w3.org/Style/CSS/]
+
'''Cascading Style Sheets''' ('''CSS''') are used with [[HTML]] to give a web page designers centralized control over the appearance of each page.  
  
 
==Example==
 
==Example==

Revision as of 17:31, August 16, 2007

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>