Answers for "a tag text decoration underline inline"

CSS
1

html a tag underline none

a {
    text-decoration: none;
    color: inherit;
}
Posted by: Guest on August-12-2021
0

text-decoration

text-decoration: underline;
text-decoration: overline red;
text-decoration: none;

/* Global values */
text-decoration: inherit;
text-decoration: initial;
text-decoration: revert;
text-decoration: unset;
Posted by: Guest on November-30-2021

Code answers related to "a tag text decoration underline inline"

Browse Popular Code Answers by Language