grid-abspos-staticpos-align-self-center.html (684B)
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-self-center-ref.html"> 7 <meta name="assert" content="Center of the abspos child should be aligned within the center of the grid's content box."> 8 <style> 9 .grid { 10 display: grid; 11 border: 1px solid black; 12 width: 100px; 13 height: 100px; 14 } 15 .abspos { 16 position: absolute; 17 width: 50px; 18 height: 50px; 19 background-color: green; 20 align-self: center; 21 } 22 </style> 23 </head> 24 <body> 25 <div class="grid"> 26 <div class="abspos"></div> 27 </div> 28 </body> 29 </html>