tor-browser

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

transform-transformed-th-contains-fixed-position-ref.html (759B)


      1 <!DOCTYPE html>
      2 <html>
      3  <head>
      4    <title>CSS Test (Transforms): Transformed th contains fixed position elements reference.</title>
      5    <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org">
      6    <style>
      7      body {
      8        overflow: hidden;
      9      }
     10      .pad {
     11        height: 50px;
     12      }
     13      .container {
     14        font-weight: bold;
     15        text-align: left;
     16        transform: translateX(20px) rotate(45deg);
     17        transform-origin: left;
     18      }
     19      .fixed {
     20        position: fixed;
     21        top: 15px;
     22        left: 10px;
     23        background-color: lightblue;
     24      }
     25    </style>
     26  </head>
     27  <body>
     28    <div class='pad'></div>
     29    <div class='container'>some text<div class='fixed'>fixed</div>
     30    </div>
     31  </body>
     32 </html>