1404167-1.html (312B)
1 <!doctype html> 2 <style> 3 text::first-letter { 4 font-size: 3em; 5 } 6 text { 7 font-size: 10px; 8 } 9 </style> 10 <svg width="500px" height="50px"> 11 <text x="0" y="40">The first-letter size should be 45px</text> 12 </svg> 13 <script> 14 document.body.offsetTop; 15 document.querySelector('text').style.fontSize = "15px"; 16 </script>