mirror of
https://github.com/servo/servo.git
synced 2025-06-23 08:34:42 +01:00
33 lines
No EOL
1 KiB
HTML
33 lines
No EOL
1 KiB
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Transforms API Test: transform rotateX</title>
|
|
<link href="mailto:ylzcylx@gmail.com" rel="author" title="loveky" />
|
|
<link href="http://www.w3.org/TR/css-transforms-1/#transform-property" rel="help" />
|
|
<link href="reference/transofrmed-rotateX-3-ref.xht" rel="match" />
|
|
<meta content="The transformed div should rotateX by 180 degrees" name="assert" />
|
|
<style>
|
|
div {
|
|
height: 150px;
|
|
width: 150px;
|
|
}
|
|
.container {
|
|
background-color: red;
|
|
}
|
|
.transformed {
|
|
transform-origin: top left;
|
|
transform: rotateX(180deg);
|
|
background-color: green;
|
|
position: relative;
|
|
top: 150px;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<p>You should only see a GREEN box if this test passes!</p>
|
|
<div class="container">
|
|
<div class="transformed">
|
|
</div>
|
|
</div>
|
|
|
|
</body></html> |