Answers for "how to underline text css"

CSS
53

text-decoration css

h1 {
  text-decoration: overline;
}

h2 {
  text-decoration: line-through;
}

h3 {
  text-decoration: underline;
}

h4 {
  text-decoration: underline overline;
}
Posted by: Guest on February-20-2020
3

line through in css

x {
  text-decoration: line-through;
}
Posted by: Guest on September-11-2020
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
4

css text strike

h2 {
  text-decoration: line-through;
}
Posted by: Guest on June-11-2020
21

underline text in html

<!-- Using 'u' tag we can draw underline below the text in HTML -->
<p>Hello all <u>Welcome here !!!</u></p>
Posted by: Guest on June-04-2020
8

how to underline font in css

h3 {
  text-decoration: underline;
}
Posted by: Guest on April-28-2020

Browse Popular Code Answers by Language