Forum Moderators: not2easy

Message Too Old, No Replies

<a:hover></a:hover>: is there such a thing?

         

shanecavanaugh

4:06 am on Jul 30, 2005 (gmt 0)

10+ Year Member



It's odd, I know. I couldn't find it on the W3C site. I thought I saw it somewhere being used to describe how to apply :hover styling from within <body> tags.

JAB Creations

7:51 am on Jul 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Here are valid examples...


p:hover
table:hover
div.hover

p.menu1.hover
table.menu1.hover
div.menu1.hover

abbeyvet

8:32 am on Jul 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



You cannot apply hover effects inline.

You could apply a class to a single link, but assuming you don't want to do that I believe you only option is a little javascript.

tedster

6:21 pm on Jul 30, 2005 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



JAB, I think you meant to use : where you used . in that second group, right?

p.menu1:hover
table.menu1:hover
div.menu1:hover

Still, they cannot be applied inline or "within <body> tags" as the original poster said.

shanecavanaugh

8:48 pm on Jul 30, 2005 (gmt 0)

10+ Year Member



Ah. Thanks, everyone.