Can the height of the underline created using text-decoration: underline;
in CSS be adjusted?
I used CSS to apply an underline to the word "about" with an 'id' of '#title4' but I want to increase the space between the word and the underline. How can I achieve this?
Here is an example of what I'm aiming for:
https://i.sstatic.net/A18PL.png
#title4 {
font-size: 2.5rem;
font-weight: 700;
margin-top: 5rem;
text-decoration: underline;
}