Answers for "how to underline for text which styling property in html"

CSS
3

html text decoration

<p style="text-decoration: none;"> There will be no effects. Default value </p>
<p style="text-decoration: underline;"> Text will be underlined </p>
<p style="text-decoration: overline;"> A line will be drawn over the text </p>
<p style="text-decoration: line-through;"> Text will be strikethrough </p>
Posted by: Guest on April-03-2021
14

how to underline text in css

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

Code answers related to "how to underline for text which styling property in html"

Browse Popular Code Answers by Language