css - Why aren't my hyperlinks changing colors or underlining? -
why aren't hyperlinks changing colors or underlining? have in css in standard vs 2010 site:
a:link, a:visited { color: #034af3; outline: none; } a:hover { color: #1d60ff; text-decoration: none; outline: none; } a:active { color: #034af3; outline: none; } p { margin-bottom: 10px; line-height: 1.6em;
}
what doing wrong? in wrong spot? thanks!
you have set not display text-decoration on hover.
with hover decoration: http://jsfiddle.net/kbznb/
without hover decoration: http://jsfiddle.net/kbznb/1/
it looks changing color, due color similarities of #1d60ff
, #034af3
Comments
Post a Comment