Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-transforms/perspective-children-only-inline.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset=UTF-8>
<title>CSS Test (Transforms): perspective applies only to DOM children (position: absolute)</title>
<meta name="assert" content="The perspective property influences an element's children.">
<link rel="match" href="reference/green.html">
<style>
div {
width: 100px;
height: 100px;
}
#outer {
background: red;
perspective: 100px;
}
#middle {
display: inline;
}
#inner {
transform: translateZ(-100px);
background: green;
}
</style>
<p>Pass if there is NO red below:</p>
<div id="outer">
<div id="middle">
<div id="inner"></div>
</div>
</div>