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/text-perspective-001.html - WPT Dashboard Interop Dashboard
<!doctype>
<meta charset="utf-8">
<title>CSS Test: Text is not incorrectly clipped in presence of perspective.</title>
<link rel="author" title="Emilio Cobos Álvarez" href="mailto:emilio@crisal.io">
<link rel="mismatch" href="about:blank">
<style>
* {
margin: 0;
padding: 0;
}
.container {
perspective: 1px;
}
.heading {
transform: translateZ(-9px) scale(10);
}
h1 {
font-size: 100px;
}
</style>
<div class="container">
<div class="heading">
<h1>X</h1>
</div>
</div>