![]() |
|
remove underline from link - Printable Version +- Computer Graphics Community (http://www.cgshelf.com/forum) +-- Forum: Web Designing (/forum-39.html) +--- Forum: CSS (/forum-44.html) +--- Thread: remove underline from link (/thread-426.html) |
remove underline from link - sathish - 05-17-2008 05:40 PM How can I remove the underline from my link? RE: remove underline from link - Nihal - 05-17-2008 06:01 PM Hi Sathish, You can use the text decoration property to get rid of the underline from your link. Here's the CSS for it: a:link, a:visited { text-decoration: none; } RE: remove underline from link - sathish - 05-21-2008 09:29 AM ok.It's working. Thanks. RE: remove underline from link - gerrycurtson - 05-04-2010 11:31 AM Nihal Wrote:Hi Sathish, That code you just put in your style and its working then set the property and value. RE: remove underline from link - turner - 06-14-2010 01:07 PM I have use this code.It work for remove underline from link. Its really very helpful code for remove underline from link.You have also try this code. RE: remove underline from link - sunitha - 11-16-2012 05:07 PM Use the following code to remove underline from link: a {text-decoration:none} |