mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
31 lines
670 B
HTML
31 lines
670 B
HTML
<html>
|
|
<head>
|
|
<style type="text/css">
|
|
#parent {
|
|
-moz-transform-style: preserve-3d;
|
|
-moz-transform: rotatex(180deg);
|
|
}
|
|
|
|
#one {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: red;
|
|
-moz-transform: translatez(10px) translatey(50px);
|
|
}
|
|
|
|
#two {
|
|
width: 100px;
|
|
height: 100px;
|
|
background-color: #00FF00;
|
|
-moz-transform: translatez(10px);
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="parent">
|
|
<div id="one"></div>
|
|
<div id="two"></div>
|
|
</div>
|
|
</body>
|
|
</html>
|