CSS And Your Website

If you have tried to design a website yourselfsupport integrated.
before, or even just surfed the Internet, you wouldCurrently, most browsers support style sheets fully.
have come across Cascading Style Sheets (CSS). IfThere are, however, a few discrepancies in how
you are acquainted with Hyper-Text Markupeach browser interprets certain its properties, but
Language (HTML), you would definitely have heard ofthese have been solved with hacks and workarounds.
it, although it is a fairly new web design language to aFor example, Free Classifieds has customized their
web designer. In this article I will talk about what is itlayouts with style sheets so that it works seamlessly
exactly, a brief history, and the advantages of usingwith all major browsers.
it.Advantages of using CSS
What is CSS?CSS layouts are known for their flexibility. It is
Cascading Style Sheets, or CSS as it is commonlypossible to make columns and rows adjust
known, is a web designing language used to defineaccordingly with users' screen resolution. HTML
the presentation of a HTML file. It is commonly usedlayouts which were previously highly complex are
to define, design and control colors, fonts, and layout,easily achieved with style sheets. It is able to position
amongst other HTML page properties. It is usedlayers relatively and absolutely. The more HTML tags
primarily to distinguish website design from websitepresent in a page, the longer it takes to load. CSS
content, making it easier to control and change theonly contains DIV tags. It is easier to edit the
presentation of web pages.website's design without any trouble; all that is
Brief historyneeded is to edit the definitions in the style sheet file.
Different web browsers made view consistencyThis is very much easier than sorting through the
difficult; hence the World Wide Consortium (W3C)entire page's HTML code and finding that small part
started working on a new style sheet to controlwhich must be changed.
visual presentation of web content. The first versionDo keep in mind, however, that even though it is not
of CSS, CSS1, was completed in 1996. However, onlyreally difficult to pickup, it still requires some
limited support for it was available. In 2000,understanding and expertise to use it correctly and
Microsoft's Internet Explorer 5 was released, with fullcustomize your website's look to your satisfaction.