1404167-4.html (307B)
1 <!doctype html> 2 <style> 3 div::first-letter { 4 color: green; 5 } 6 7 div::first-line { 8 color: blue; 9 } 10 </style> 11 <div>My first letter should be green, and the whole line 20px in size</div> 12 <script> 13 document.body.offsetTop; 14 document.querySelector('div').style.fontSize = "20px"; 15 document.body.offsetTop; 16 </script>