fill-box-001.html (967B)
1 <!DOCTYPE html> 2 <title>transform-box: fill-box</title> 3 <link rel="match" href="reference/greensquare200x200.html"> 4 <link rel="help" href="https://drafts.csswg.org/css-transforms/#transform-box"> 5 <style> 6 svg { 7 background-color: red; 8 } 9 rect { 10 transform-box: fill-box; 11 } 12 #target1 { 13 transform: rotate(90deg); 14 } 15 #target2 { 16 transform: translate(50%, -50%); 17 } 18 #target3 { 19 transform-origin: 25% 25%; 20 transform: rotate(180deg) translate(-25%, -25%); 21 } 22 #target4 { 23 transform-origin: 75px 75px; 24 transform: rotate(-180deg) translate(-25%, -25%); 25 } 26 </style> 27 <p>There should be a green 200x200 rectangle below, and no red.</p> 28 <svg width="200" height="200"> 29 <rect id="target1" x="100" y="100" width="100" height="100" fill="green"/> 30 <rect id="target2" x="50" y="50" width="100" height="100" fill="green"/> 31 <rect id="target3" x="25" y="25" width="100" height="100" fill="green"/> 32 <rect id="target4" x="25" y="25" width="100" height="100" fill="green"/> 33 </svg>