https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f037c9d795f69b3037a78512a6bb321199269c98 authored by tbirdbld on 25 September 2012, 22:46:53 UTC
Added THUNDERBIRD_16_0b3_RELEASE THUNDERBIRD_16_0b3_BUILD1 tag(s) for changeset fd5e4a57e184. DONTBUILD CLOSED TREE a=release
Tip revision: f037c9d
rotatex-perspective-3-ref.html
<html>
<head>
  <style type="text/css">
    #container {
      position: relative;
      height: 300px;
      width: 300px;
      margin: 50px 100px;
      border: 2px solid blue;
      
      -moz-perspective: 500px;
  }

  #parent {
      margin: 10px;
      width: 280px;
      height: 280px;
      background-color: #844BCA;
      
      -moz-transform: rotateY(40deg);
  }
    
  </style>
</head>
<body>

  <div id="container">
    <div id="parent">
    </div>
  </div>

</body>
</html>
back to top