text-indent-svg-ref.html (389B)
1 <!DOCTYPE html> 2 <style> 3 html { 4 --scale: 1; 5 } 6 .indent { 7 text-indent: calc(1rem * var(--scale)); 8 } 9 .zoom { 10 --scale: 2; 11 } 12 </style> 13 14 <svg width="150" height="30"> 15 <text class="indent" x="0" y="20">unzoomed</text> 16 </svg> 17 18 <div class="zoom"> 19 <svg width="300" height="60"> 20 <text style="font-size: calc(1rem * var(--scale))" class="indent" x="0" y="40">zoomed</text> 21 </svg> 22 </div>