Remove underline from text-links (html-tag a)
To create text links without underline we need css. If you want to remove it just from one link use style attribute. If you want to remove underline from all links add this to your style to head of page.
<html>
<head>
<style type="text/css">
a { text-decoration: none; }
</style>
</head
<body>
<a href="#">I am a non-underlined link like all link on this page</a>
<a href="#" style="text-decoration: none;">I am a non-underlined link even if other links on this page underlined</a>
</body>
</html>
Similar entries
- Web 2.0 Style two Side Background, Dark to Light Effect
- Pure CSS Mouseover Menu without Javascript
- DropDown / Rollover Menu with pure CSS / HTML
- Mouseover images with CSS
- Web2 Style CSS Dynamic Menu with Arrows and Background-Images
- A HTML-Example Page
- CSS hierarchy and inline style sheets
- HTML horizontal list elements instead vertical
- Redirect webpages with HTML, PHP, .htaccess, Java+Script, CGI-Perl, ASP.NET and ColdFusion
- Web2 style secure & flexible free php contact form with easy setup
- CSS vertical text for mozilla-firefox?
- Common HTML / Web colors
- Hide your email address + mailto link with javascript from spammer
- Easy access webpage
- CSS Text effects for MSIE
- Cool Text Effects with CSS Filters
- Drupal problem with inline style <p style=""> and <br />
- Preload images with JavaScript or CSS
- Change background color onmouseover with Javascript
- Check password safety with JavaScript while typing

Post new comment