tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

grid-abspos-staticpos-align-self-center-large-border-padding.html (856B)


      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-large-border-padding-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  padding: 13px;
     12  padding-top: 74px;
     13  padding-bottom: 42px;
     14  border: 23px solid black;
     15  border-bottom-width: 45px;
     16  width: 100px;
     17  height: 500px;
     18  background-color: blue;
     19  background-clip: content-box;
     20 }
     21 .abspos {
     22  position: absolute;
     23  width: 50px;
     24  height: 100px;
     25  background-color: green;
     26  align-self: center;
     27 }
     28 </style>
     29 </head>
     30 <body>
     31 <div class="grid">
     32  <div class="abspos"></div>
     33 </div>
     34 </body>
     35 </html>