I have a problem, I want to put the first letter in the first raw separately from the text. CSS doesn't seem to be recognizable display: block; or position: absolute for the pseudo-class of the first letter.
Note: I cannot add another tag to the first letter.
EXAMPLE
HTML
<div class="some-word">
Product
</div>
CSS
.some-word:first-letter{
font-size:30px;
display:block;
position:absolute;
}
What I'm trying to achieve:

source
share