I have a problem. I want to edit a text with a tutor. However, I would like to make it more curved. My underline is just straight. Is there an option to make the underline more curved, like in the example pictures? So that it looks a bit more human.
.here {
position: relative;
}
.here::after {
content: " ";
left: 0;
right: 0;
position: absolute;
bottom: 1px;
height: 25%;
background-color: #9bffb0a6;
z-index: 0;
border-radius: 2px;
color: black;
}
<h1>Hello this a <span class="here">text</span></h1>