Is there a way to add space between text and the border below, as shown in the image linked?
I'd like the space to be 5px with a font-size of 15px.
My attempt:
.selected {
color: #284660;
}
.selected:after {
content: '';
position: absolute;
width: 100%;
height: 0;
left: 0;
bottom: 5px;
border-bottom: 2px solid #284660;
}
However, this solution created a wider border than desired.