What is CSS? |
|
Cascading Style SheetsIn the early days of web design the formatting of web pages was done using HTML tags. The font type, face and colour etc was specified inside the HTML code along with the actual content of the web page. These days the appearance of web sites are controlled by cascading style sheets, often referred to as CSS. Style sheets have many advantages:
Cascading style sheets are referred to as 'Cascading' because the style rules can be set in a number of places in a web site and the rules cascade down to the final display. The order in which the rules cascade are (items lower in the list override those above):
Useful Linkshttp://www.w3.org/Style/CSS/ - The World Wide Web Consortium (W3C) CSS Homepage http://www.w3schools.com/css/default.asp - CSS tutorial by W3 Schools
|