Is it possible to change to the underline height from when the developer uses text-decoration: underline; in CSS to create an underline?
Using CSS I made the word "about" which has an 'id' of '#title4' have an underline and I was wondering how I can change the distance of the height from the underline to the word so there is a bigger gap between both?
Example of what I'm looking for
#title4 {
font-size: 2.5rem;
font-weight: 700;
margin-top: 5rem;
text-decoration: underline;
}
