I've implemented some ::first-letter
styles for my p
elements. However, when I add display: inline-flex
to make them inline, all the ::first-letter
styles stop working.
How can I make the elements inline while keeping the ::first-letter
styles?
p:first-of-type::first-letter {
font-size: 25px;
font-weight: bold;
}
p:nth-of-type(2)::first-letter {
font-size: 25px;
font-weight: bold;
}
p:nth-of-type(3)::first-letter {
font-size: 25px;
font-weight: bold;
}
/* inline container */
p {
display: inline-flex;
width: 33%;
}