chriscam19
01-10-2003, 12:31 AM
Ok you know when you make a link in html you get your text with a line representing a link? Well how do i make a link without the line? Sometimes the
line looks tacky!
line looks tacky!
|
Click to See Complete Forum and Search --> : Links - Easy question chriscam19 01-10-2003, 12:31 AM Ok you know when you make a link in html you get your text with a line representing a link? Well how do i make a link without the line? Sometimes the line looks tacky! Stefan 01-10-2003, 01:45 AM <head> <style type="text/css" title="Default" media="screen"> a:link, a:visited {text-decoration:none;} a:hover {text-decoration:underline;} </style> </head> <body> <p> <a href="">Link with undeline only when you mouseover/hover it</a> webdeveloper.com
Copyright Internet.com Inc., All Rights Reserved. |