Answers for "take of a tag text decoration"

1

html a tag underline none

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

text decoration

h1 {
  text-decoration: underline overline dotted red;

  }

h2 {
  text-decoration: underline overline wavy 
  blue;
}
Posted by: Guest on August-23-2021

Browse Popular Code Answers by Language