Answers for "css underline size"

CSS
1

how to change the underline thickness in css

text-decoration-thickness: 3px;
text-decoration-thickness: 5%;
Posted by: Guest on January-22-2021
0

underline height

.css_class
{
  text-decoration: underline;
  text-decoration-color: red;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}
Posted by: Guest on November-09-2021

Browse Popular Code Answers by Language