tor-browser

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

checkbox-clamp-02-ref.html (690B)


      1 <!DOCTYPE HTML>
      2 <!--
      3     Any copyright is dedicated to the Public Domain.
      4     http://creativecommons.org/publicdomain/zero/1.0/
      5 -->
      6 <html><head>
      7  <meta charset="utf-8">
      8  <title>Testcase for bug 1405986</title>
      9  <style type="text/css">
     10 html,body {
     11  color: black;
     12  background-color: white;
     13  font: 16px/1 monospace;
     14  padding: 0;
     15  margin: 0;
     16 }
     17 
     18 .grid {
     19  display: inline-grid;
     20  grid: 100px / 40px 40px;
     21  border: 1px solid;
     22  vertical-align: top;
     23  justify-items: start;
     24 }
     25 
     26 input {
     27  margin: 0;
     28 }
     29  </style>
     30 </head>
     31 <body>
     32  <div class="grid">
     33    <input type=checkbox style="align-self: center">
     34    <input type=checkbox checked style="align-self: center">
     35  </div>
     36 </body>
     37 </html>