Как реализовать подчеркивание и изменение цвета первой буквы в слове
h3 {
font-size: 40pt;
margin: 10% 0 0 10%;
font-weight: bold;
display: block;
position: relative;
}
h3::before {
content: "";
display: block;
width: 100px;
height: 1px;
position: absolute;
top: 53px;
left: 85px;
background-color: #000;
}
h3:first-letter {
color: #ffc600;
}
<h3>
Siblime
</h3>
Ответы (1 шт):
Автор решения: UModeL
→ Ссылка
h3 {
font-size: 40pt;
margin: 10% 0 0 10%;
font-weight: bold;
display: block;
position: relative;
}
h3::before {
content: "";
display: block;
width: 100px;
height: 1px;
position: absolute;
top: 53px;
left: 85px;
background-color: #000;
}
h3:first-letter {
color: #ffc600;
text-decoration: underline;
}
<h3>
Siblime
</h3>