|
yes,
define a class that encapsulate your links and then define your css styles for the elements that will be with in the class
ie
.container1 { width:750px; }
<!-- then with in this class you can define specific styles for links, divs, p's etc -->
.container a { color:#ffffff;font-family:arial; text-decoration:none; }
.container a:hover {font-family:arial; text-decoration:none; font-weight:bold}
<!-- you can redefine another that has a different font color : -->
.container2 { width:750px; }
.container2 a { color:#000000; font-family:arial; text-decoration:none; }
.container2 a:hover {font-family:arial; text-decoration:none; font-weight:bold}
Hope this helps
Steve
|