blob: 90ffcf528aae1e346d7d1a171dd7579d091a6fef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>#inner should not be clipped</title>
<style>
body {
margin: 0;
background: red;
}
#perspective {
perspective: 300px;
perspective-origin: top left;
}
#inner {
height: 100vh;
transform-origin: top left;
transform: translateZ(-300px) scale(2);
z-index: 2;
background: lime;
border: 1px solid lime;
box-sizing: border-box;
}
</style>
<div id="perspective">
<div id="inner"></div>
</div>
|