[b]What is CSS? [/b]
CSS stands for cascading style sheets.
Cascading style sheets are used to change properties like font face, size, font in tables,
scrollbar color, link color and hover color, and other style attributes on Web sites,
without having to use long HTML codes.
[b]EXAMPLE OF COMMON USE CSS:[/b]
Remember not to remove any colons or semicolons, the code will not work without them. Your finished style sheet will be placed between the <head> tag:
Begin style sheet:
<">End style sheet
How do I make my own style sheet? You start your style sheet with this tag:
<style type="text/css">
and end it with this one:
</style>
All of your attributes will go in between those two tags. For instance, if you wanted just a style sheet to remove the underline from your links, you would use this style sheet:
<style type="text/css">
A:link
{ text-decoration: none; }
</style>
If you want a style sheet that also includes a background color, you would use this tag, substituting your own color # where you see bold text:
<style type="text/css">
A:link
{ text-decoration: none; }
body
{ background-color: #000000; }
</style>
TAKE NOTE:
for advance user who wish to make much elaborated design
pls USE UR SEARCH ENGINE ...
i suggest too pls visit first the ff link u can learn more bout css here
http://www.dynamicdrive.com/
http://www.w3schools.com/
for cursor codes and hover
again search for this... theres lot of site that offer their service
and provide codes for this.. and all u need to do is copy paste the codes...
Last edited by eehjhay (2007-08-03 03:50:47)