text-indent-parent-dynamic.html 313 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <div id="x" style="background: lightgreen; height: 3em; width: 400px; padding: 4px;">
  5. <div style="text-indent: 40%; width: 200px; background: yellow;">X</div>
  6. </div>
  7. <script>
  8. var x = document.getElementById('x');
  9. x.offsetWidth;
  10. x.style.width = '500px';
  11. </script>
  12. </body>
  13. </html>