I am trying to style the first word of a paragraph, but it is not working. Can anyone help. I can style the first letter, but not the first word. I have reasons to not use <span>
to do this. JSFiDDLE HERE
.product-title {
width: 100vw;
text-align: right;
font-size: 4.5vw;
letter-spacing: -0.05em;
color: #ffffff;
"
}
#first-letter-here p::first-letter {
font-family: arial;
font-weight: 900;
font-size: 3em;
}
#first-word-here p::first-word {
font-family: arial;
font-weight: 900;
font-size: 3em;
}
<div id="first-letter-here">
<p>
Milk and cookies.
</p>
</div>
<div id="first-word-here">
<p>
Milk and cookies.
</p>
</div>