::first-letter preceded by empty inline does not work |
|
Issue description
Finding the first-letter text doesn't work with an inline element preceding the first text in the block:
<!DOCTYPE html>
<style>
div::first-letter { color: green }
</style>
<div>
<span></span>
<span>First letter should be green</span>
</div>
|
|
►
Sign in to add a comment |
|