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/transform-clip-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="UTF-8">
<title>CSS transforms and clipping</title>
<link rel=author href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez">
<link rel=match href="transform-clip-001-ref.html">
<style>
body { margin: 0 }
</style>
<div style="overflow: clip; width: 200px; height: 200px; transform: translate(10px, 10px)">
<div style="overflow: clip; pointer-events: none; width: 200px; height: 200px; transform: translate(0px, -190px)">
<div style="background: blue; width: 200px; height: 200px; transform: translate(0px, 190px);"></div>
</div>
</div>