My CSS :first-letter selector is effective on all p
elements, however when applied to a span
with the id #fletter
, it doesn't seem to work...
#fletter span:first-letter {
font-weight: 600;
font-size: 25px;
}
<span id="fletter">
The :first-letter selector functions perfectly with my p
elements.
p:first-letter {
font-weight: 600;
font-size: 25px;
}
<p>Lorem Ipsum</p>