Archived topic
Headline colored underline
3 replies · Started by Marcel on March 25, 2022
Viewing posts 1–4 of 4
Hello,
I would like in a headline for example H1 that the first four letters is underlined with a red line of 3-4 pixels. Could you help me with this? Many thanks and greetings
Marcel
Hi there,
add this CSS:
h1.entry-title {
position: relative;
}
h1.entry-title:after {
content: '';
display: block;
height: 4px;
width: 4ch;
background-color: #f00;
}
Thx! :)!
You're welcome
This archived topic is closed to new replies.