a class
Standard HTML tag for defining hyperlinks.
The following illustrations show:
-
The a style before applying CSS changes.
-
The a style after the text-decoration property has been changed to none and the font-color property has been changed to blue.
| Default CSS | Modified CSS |
|---|---|
![]() a {<br/> text-decoration: underline; <br/>} | ![]() a {<br/> text-decoration: none; <br/> font-color: blue; <br/>} |
Updated 19 days ago


