tor-browser

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

rotateY-180deg-with-overflow-scroll-ref.html (259B)


      1 <!DOCTYPE html>
      2 <style>
      3 .container {
      4  transform: rotateY(180deg);
      5  width: 100px;
      6  height: 100px;
      7  overflow: scroll;
      8  background: green;
      9 }
     10 .content {
     11  width: 300px;
     12  height: 300px;
     13 }
     14 </style>
     15 <div class="container">
     16  <div class="content"></div>
     17 </div>