tor-browser

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

parent-after-change-style-pseudo-element-flicker-ref.html (249B)


      1 <style>
      2 div {
      3    position: absolute;
      4    width: 100px;
      5    height: 100px;
      6 }
      7 
      8 .child:after {
      9    content: "";
     10    position: absolute;
     11    inset: 0;
     12    background-color: black;
     13 }
     14 
     15 </style>
     16 
     17 <div class="parent">
     18    <div class="child"></div>
     19 </div>