CSS HOVER Problem

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mrbadboy
    New Member
    • Jul 2007
    • 21

    CSS HOVER Problem

    Hi,

    I tried to change text color using HOVER. It works in Mozilla but not in IE. I've mentioned my codes are below.

    p.hvr{
    font-family:verdana;
    font-size:12pt;
    color:red;
    }
    p.hvr:hover{
    font-family:verdana;
    font-size:12pt;
    color:green;
    }

    <p class="hvr">Hov er</p>


    How to salve this problem ?


    Thanks.
  • drhowarddrfine
    Recognized Expert Expert
    • Sep 2006
    • 7434

    #2
    :hover does not work in IE except on <a> elements.

    Comment

    Working...