You need to make sure that the link with the <a href="...">Text</a> tag does not respond to the cursor when you hover. I did it already:
a:hover { cursor: default; text-decoration: none; } But the color is still changing.
Text tag does not respon...">
so that the color does not change when you hover paint it in the color that was before the guidance
a:hover { cursor: default; text-decoration: none; color:#000000; } cursor and text-decoration in :hover can be omitted, it is enough to specify it only in a { ... } - HerrgottSource: https://ru.stackoverflow.com/questions/527218/
All Articles