grid-abspos-staticpos-align-items-flex-end.html (723B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <link rel="help" href="https://drafts.csswg.org/css-align-3/#align-abspos"> 5 <link rel="help" href="https://www.w3.org/TR/css-position-3/#staticpos-rect"> 6 <link rel="match" href="grid-abspos-staticpos-align-items-flex-end-ref.html"> 7 <meta name="assert" content="Abspos child of grid is aligned to end of grid content box when statically positioned and align-items: flex-end in parent."> 8 <style> 9 .grid { 10 display: grid; 11 border: 1px solid black; 12 width: 100px; 13 height: 100px; 14 align-items: flex-end; 15 } 16 .abspos { 17 position: absolute; 18 width: 50px; 19 height: 50px; 20 background-color: green; 21 } 22 </style> 23 </head> 24 <body> 25 <div class="grid"> 26 <div class="abspos"></div> 27 </div> 28 </body> 29 </html>