svg-percent-stroke-width-viewbox-update-ref.html (633B)
1 <!DOCTYPE html> 2 <meta charset="utf-8"> 3 4 <svg height="100" width="100" viewBox="40 40 20 20"> 5 <polyline stroke-width="10%" stroke="gold" points="20,20 80,80"></polyline> 6 </svg> 7 <svg height="100" width="100" viewBox="40 40 20 20"> 8 <polyline stroke-width="calc(5% + 5px)" stroke="gold" points="20,20 80,80"></polyline> 9 </svg> 10 <svg height="100" width="100" viewBox="40 40 20 20"> 11 <circle stroke-width="10%" stroke="gold" cx="50" cy="50" r="10" fill="none"></circle> 12 </svg> 13 <svg height="100" width="100" viewBox="40 40 20 20"> 14 <rect stroke-width="10%" stroke="gold" x="40" y="40" width="20" height="10" fill="none"></rect> 15 </svg>