Answers for "text decoration font"

CSS
1

text-decoration

a{
    text-decoration:underline; // default in A tag
    text-decoration:none;
    text-decoration: overline;
    text-decoration: line-through;
    text-decoration: underline overline;
}

//My youtube:'https://www.youtube.com/HasibulIslambd'
Posted by: Guest on June-04-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