first-letter-and-sibling-display-change.html (657B)
1 <!DOCTYPE html> 2 <title>CSS Test: Changing ::first-letter color while sibling changes display type.</title> 3 <link rel="author" title="Rune Lillesveen" href="mailto:futhark@chromium.org"> 4 <link rel="match" href="first-letter-block-to-inline-ref.html"> 5 <link rel="help" href="https://drafts.csswg.org/css-pseudo-4/#first-letter-pseudo"> 6 <style> 7 div { color: green } 8 div::first-letter { color: red } 9 .green::first-letter { color: green } 10 </style> 11 <div>This text should be green.<span></span></div> 12 <script> 13 document.body.offsetTop; 14 document.querySelector("span").style.display = "block"; 15 document.querySelector("div").className = "green"; 16 </script>