HTML/CSS question
HTML/CSS question
- Started
- Last post
- 4 Responses
- adamfinger
Hopefully this question will be pretty simple to answer.
I've defined a css file and amongst other styles, I also defined the link, visited, hover, and active style. However, what if I want more than one link style on a page?
Thanks.
- the_user0
a.style1 {}
a.style1:hover {}a.style2 {}
a.style2:hove{}a href="#" class="style1"
a href="#" class="style2"
- unformatted0
.classname a:link{}
.classname a:visited{}
.classname a:active{}
.classname a:hover{}[a class="classname"]
- toastie0
define it per table
- adamfinger0
thank you!