html - A:Hover problem in chrome -


i seem having problem styling links chrome, yet works in safari.

i have normal styling this:

a:link {     color:#000;     text-decoration:none; }  a:hover {     color:#c40000; } etc.... 

now works on of links doesn't work on them all, can work on other ones drilling down in div.. example:

.col a:hover {     color:#c40000; } 

i have searched haven't found solutions apart setting styles every div has link in it... seems stupid.

thanks lot.

update - checked on laptop , osx issue, works fine on chrome on vista laptop not on imac ;/

try using:

a:hover {     color:#c40000 !important; } 

the !important keyword override previous styles.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -