Sign up for Free !!
World's first open source developer community with
Ticketing System
Thanks in advance.
Inside <style>...</style> tags or in the external .css file you will use this: a:hover { color: #f00; } /* red text on mouse hover */
If you want to change the color only for specific links, use a class.
.red_text:hover { color: #f00; } /* red text on mouse hover */
To apply the .css class, you will use this syntax:
<tag_name class="red_text">Your text here</tag_name>
Please Login/Register to write your answer !!!
Inside <style>...</style> tags or in the external .css file you will use this:
a:hover { color: #f00; } /* red text on mouse hover */
If you want to change the color only for specific links, use a class.
.red_text:hover { color: #f00; } /* red text on mouse hover */
To apply the .css class, you will use this syntax:
<tag_name class="red_text">Your text here</tag_name>