Posts: 175
Location: Lockport Illinois
|
!! i suggest you google it, css is a very important aspect of web design....
it makes it so you dont have to put " style="color:blue" " in every link...
it sets the properties of each tag
for example instead of " style="color:blue" " you could havein your <head></head> tags:
Code:
<style type=text/css>
A:link {
color: white;
font-family: verdana;
text-decoration: none
}
A:hover {
color: #720000;
text-decoration: underline overline
}
A:visited {
color: white;
font-family: verdana
}
</style>
so that every time you use the <a></a> tag with href="#" it will use the assigned attributes you used in your CSS style sheet. it saves yourslef alot of time when your making a page with many links
matt
__________________
"People created God in an effort to explain the unknown and soothe their fear of death."
-beasters
Last edited by sk8boarder2424; 03-25-2005 at 11:23 PM..
|