|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
a:hover
Is there a way to apply different a:hover properties to different <a>'s?
Thanks in advance. |
|
#2
|
|||
|
|||
|
RE: a:hover
Here is an example CSS:
Code:
A:hover {
COLOR: #003300; TEXT-DECORATION: none
}
A.pageheading:hover {
COLOR: #cc3300; TEXT-DECORATION: underline
}
A.subheading:hover {
COLOR: #cc33cc; TEXT-DECORATION: underline
}
Then use the following: Code:
<a class=subheading href="...">...</a> <a class=pageheading href="...">...</a> and you'll get different behavior of links. ============ Mike Tsapenko Chief of Web-development Dept. AlarIT http://www.AlarIT.com |
|
#3
|
||||
|
||||
|
RE: a:hover
Hmmmm.......
Is the purpose of class=stuff code to point to different CSS types? I mean is there another way to use classes in HTML? |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > a:hover |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|
|