text-decoration: none;
Browser |
|
---|
The text-decoration property adds decoration to text.
The underline of the link can be removed by applying this property for the A element.
a {
text-decoration: none;
}
Property | Value | Explanation |
---|---|---|
text-decoration | none | normal text (removes the underline) |
- text decoration
(Other values can be seen)
Example
<html>
<head>
<title>TAG index</title>
<style type="text/css">
a { text-decoration: none; }
</style>
</head>
<body>
<p><a href="index.html">Link Styles</a></p>
</body>
</html>
- Output