09-20-2003, 08:40 AM | #1 (permalink) |
Fear the bunny
Location: Hanging off the tip of the Right Wing
|
HTML Question: How can I make links bold when hovered over?
I was just at a site where the text links all went from regular to bold when hovered over, and I wondered how you do that. If anyone knows, please tell me how to write the code.
Thanks.
__________________
Activism is a way for useless people to feel important. |
09-20-2003, 09:06 AM | #2 (permalink) |
Crazy
Location: Reading, UK
|
Here's one solution with CSS:
Code:
<html> <head> <style type="text/css"> A:link, A:active { font-weight: normal; text-decoration: none; } A:hover { font-weight: bold; text-decoration: none; } </style> </head> <body> <a href="testing.html">Just testing</a> </body </html> Last edited by peacy; 09-20-2003 at 09:11 AM.. |
Tags |
bold, hovered, html, links, make, question |
|
|