grid-item-aspect-ratio-stretch-4-ref.html (995B)
1 <!doctype html> 2 <meta charset="utf-8"> 3 <title>Reference: stretching works for replaced items with a fallback aspect ratio</title> 4 <link rel="author" title="Mats Palmgren" href="mailto:mats@mozilla.com"> 5 <link rel="author" title="Mozilla" href="https://mozilla.org"> 6 <style> 7 body { 8 line-height: 0; 9 } 10 11 div { 12 display: inline-block; 13 height: 250px; 14 width: 350px; 15 background: grey; 16 margin: 10px; 17 vertical-align: top; 18 } 19 20 img { 21 display: block; 22 background: blue; 23 } 24 25 .justify { 26 width: 350px; 27 } 28 .align { 29 height: 250px; 30 } 31 </style> 32 <div> 33 <img class="align justify"> 34 </div> 35 <div> 36 <img class="align"> 37 </div> 38 <div> 39 <img class="justify"> 40 </div> 41 <div> 42 <img style="width:20px; height:40px"> 43 </div> 44 45 <script> 46 var url = 'data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 100"></svg>' 47 var imgs = document.querySelectorAll('img'); 48 for (var i = 0; i < imgs.length; ++i) { 49 var img = imgs[i]; 50 img.src = url; 51 } 52 </script>