View Full Version : What is CSS?


LilChick334
06-23-2005, 03:33 PM
:cloud: What exactly is CSS, and how do you 'do' it? :cloud:

starlet
06-23-2005, 03:44 PM
Everything about css is explained here: http://www.lissaexplains.com/css.shtml

Have a read of that and post back if you still don't understand :)

iTom
06-23-2005, 06:05 PM
Well, to create CSS, then you need to know the basics. CSS stands for Cascading Style Sheet, and that is made of elements, classes and ID's. To insert a stylesheet into a document, use this syntax:


<style type="text/css">

h2 { /* Element */
color: red /* Attribute */
}

p.myclass { /* Class */
font-family: Garamond;
}

#myid { /* ID */
border-bottom: 1px solid black;
}
</style>


There is a basic style sheet... but as starlet mentioned, you should check out the CSS section or do a google on 'CSS Tutorials'.

Hope this helps :)