blob: 091725c02a024928aa2b01ccd17cb726068b0df6 (
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
|
<!DOCTYPE html>
<html>
<head>
<style>
.scene {
transform-style: preserve-3d;
}
.hidden {
backface-visibility: hidden;
}
#inner {
width: 20px;
height: 20px;
box-shadow: rgb(255, 205, 31) 0px 0px 0px 3px;
}
</style>
</head>
<body>
<div class="scene">
<div class="hidden">
<div id="inner">
</div>
</div>
</div
</body>
|