-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexperiment02b.html
42 lines (37 loc) · 1 KB
/
experiment02b.html
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
33
34
35
36
37
38
39
40
41
<!DOCTYPE HTML>
<html>
<head>
<title>CSS Experiment 02b</title>
<!-- https://codepen.io/desandro/pen/MGpxVG -->
<style>
.scene {
width: 200px;
height: 200px;
border: 1px solid #CCC;
margin: 40px;
perspective: 400px;
}
.panel {
width: 55px;
height: 55px;
float: left;
margin: 5px;
background: blue;
transform: rotateY(45deg);
}
</style>
</head>
<body>
<div class="scene">
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
<div class="panel"></div>
</div>
</body>
</html>