dynamic-content.html (214B)
1 <!doctype html> 2 <style> 3 div::before { 4 content: none; 5 } 6 .foo::before { 7 content: "Woof"; 8 } 9 </style> 10 <div></div> 11 <script> 12 document.body.offsetTop; 13 document.querySelector('div').classList.add('foo'); 14 </script>