grid-item-no-aspect-ratio-stretch-1-ref.html (527B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>CSS Test Reference</title> 4 <style> 5 body { 6 line-height: 0; 7 } 8 9 div { 10 display: inline-block; 11 height: 250px; 12 width: 350px; 13 background: purple; 14 margin: 10px; 15 } 16 17 svg { 18 display: block; 19 background: green; 20 } 21 .justify { 22 width: 350px; 23 } 24 .align { 25 height: 250px; 26 } 27 </style> 28 <div> 29 <svg class="align justify"></svg> 30 </div> 31 <div> 32 <svg class="align"></svg> 33 </div> 34 <div> 35 <svg class="justify"></svg> 36 </div> 37 <div> 38 <svg></svg> 39 </div>