tor-browser

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

1278080.html (580B)


      1 <style>
      2 .columns {
      3       columns: 5;
      4       column-fill: auto;
      5  height: 100px;
      6 }
      7 .grid {
      8  display: grid;
      9  max-height: 180px;
     10  grid-auto-rows: 30px;
     11  grid-gap: 12px;
     12 }
     13 span {
     14  grid-row: 2;
     15 }
     16 i { 
     17  display: block; 
     18  height: 60px; 
     19 }
     20 </style>
     21 <div class="columns"><div class="grid"><span><i></i></span></div></div>
     22 <script>
     23 window.onload = function(){
     24  var x = document.createElementNS("http://www.w3.org/1999/xhtml", "x");
     25  var r = new Range();
     26  r.selectNode(document.getElementsByTagName('span')[0]);
     27  setTimeout(function(){ r.surroundContents(x); }, 1);
     28 };
     29 </script>