tor-browser

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

css3-transform-rotateY-ref.html (539B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4    <title>CSS Transforms Test: transform property with rotateY function</title>
      5    <link rel="author" title="Noah Lu" href="mailto:codedancerhua@gmail.com" />
      6    <style type="text/css">
      7    div {
      8        height: 100px;
      9        position: absolute;
     10        top: 80px;
     11    }
     12    .green {
     13        background-color: green;
     14        left: 80px;
     15        width: 100px;
     16    }
     17    </style>
     18 </head>
     19 <body>
     20    <p>The test passes if there is a green square and no red.</p>
     21    <div class="green"></div>
     22 </body>
     23 </html>