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 { text-decoration: underline; } | a { text-decoration: none; font-color: blue; } |
Updated over 2 years ago