What is a Cascading Style Sheet (CSS)

Cascading Style Sheets, also known as CSS, are theThe word Cascading reflects how style sheets work.
most popular and neat way of formatting an htmlAn Html document can be linked to several style
page.sheets, for example it could be linked to 2 sheets, an
There are two versions of Cascading Style Sheetsinternal style sheet (styles within the head tag of a
(CSS). CSS Level 1 was launched in 1996 and ishtml document) and an external style sheet (a .css
supported by all browsers. This version is the older ofdocument).
the two and is used mostly for font formatting, textAn important aspect of Cascading Style Sheets is the
alignment and line spacing.operation of inheritance. If a certain aspect of
CSS version 2 came out in 1998. This one is a lotformatting is not specified for a child element, it will
more powerful than its predecessor allowing you notinherit the formatting of its parent element.
only to format text but also to position elements onWhen you use CSS, you can avoid the use of most
your web page. This version of CSS is so powerfulhtml format tags making your code much easier to
that all good web designers use it instead of usingread.
html tables.