Forum Moderators: not2easy

Message Too Old, No Replies

how to do link without underline but when user goes over link it should

         

toplisek

2:16 pm on May 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month




I have simple question.
how to do that on web site link will not be underline but if user goes over link it will publish underline.

Need help.

Robin_reala

3:16 pm on May 23, 2007 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Simple enough:

a { text-decoration: none; }
a:hover { text-decoration: underline; }

The :hover pseudoclass refers to the state in which the elements selected are being hovered over.