Code subject: Change the default underline style of link
Posted: Sun Dec 04, 2011 10:50 pm
Joined: Tue Mar 27, 2007 10:55 pm Posts: 2279 Location: Earth Has thanked: 39 time Have thanks: 61 time
Change the default underline style of link from underlined to non underlined.
Code:
<html> <head> <title>Change the default link style to not underline</title> <style type="text/css"> a {text-decoration: none;} a:hover {text-decoration: underline;} </style>