Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS Test: Perspective with overflow: auto</title>
<link rel="author" title="Mozilla" href="https://mozilla.com">
<link rel="author" title="Yannis Juglaret" href="mailto:yjuglaret@mozilla.com">
<link rel="match" href="overflow-perspective-ref.html">
<style>
#container {
width: 300px;
height: 300px;
overflow: auto;
perspective: 1000px;
}
#child {
width: 60px;
height: 60px;
background: lime;
transform: translateX(100px) translateY(140px) translateZ(550px);
transform-origin: top left;
}
</style>
<div id="container">
<div id="child"></div>
</div>