Underline text How to do?

Hi,

Can anyone suggest how to make an underline text with the design you see attached?Schermata 2023-07-11 alle 11.20.16

Now that I have written to you I have found the solution! :rofl: :rofl:

this the code:

QUISQUE SODALES

css:

.gialloSottolineato{

position: relative;
display: inline;
}

.gialloSottolineato::after {
content: “”;
position: absolute;
bottom: 1px;
left: 0;
height: 10px;
width: 100%;
background-color: #E0FF22;
border-radius: 4px;
z-index: -1;

}

1 Like