i'm trying to make the "dd" elements on my page act like links, so i've styled them like this:
dd{
cursor: hand;
voice-family: "\"}\"";
voice-family: inherit;
cursor: pointer;
}
dd:hover{
text-decoration: underline;
}
the regular "dd" styling works fine (making the cursor change to a hand when passing over the element), but the "dd:hover" styling doesn't work at all.
any suggestions or solutions?
dd{
cursor: hand;
voice-family: "\"}\"";
voice-family: inherit;
cursor: pointer;
}
dd:hover{
text-decoration: underline;
}
the regular "dd" styling works fine (making the cursor change to a hand when passing over the element), but the "dd:hover" styling doesn't work at all.
any suggestions or solutions?