Welcome To The World Of CSS Web Design

Although CSS was first introduced in the mid 1990s,of CSS is to define the presentation.
it did not become a mainstream tool among webThe reason that so many web pages have broken
designers and masters until more recent years. This islayouts in different browsers is because they try to
unfortunate, because there are millions of poorlyuse HTML to control the structure and presentation
designed web sites cluttering the internet that couldof the page. The most common abuse of HTML is
be easily improved with the help of CSS.attempting to use tables as a presentation method.
So what exactly is CSS? CSS is an acronym thatAlthough you may be able to achieve the look you
stands for Cascading Style Sheets. The termwant in a single browser, your web page will look
Cascading Style Sheets implies two things. First off,broken and distorted in many other browsers. The
the style sheets are cascading. This means thatonly time that tables should be used is to hold a set
multiple style sheets can be used for a single webof data (such as the results from a scientific
page. Additionally, the term "cascading" also refers toexperiment). If you do have a legitimate use for
the way a style is determined in the event that moretables on your web page, you can even use CSS to
than one rule matches a single element. The secondstyle your table and make it more attractive.
thing that is implied by the name Cascading StyleBy taking the time to learn CSS, you will be able to
Sheets is that the purpose of CSS is to style webcreate a web page that looks much more consistent
pages. Whereas the purpose of HTML (or XHTML) isacross a variety of browsers.
to define the structure of a web page, the purpose