html
html
1
2
3
4
5
6
7
8
9
10
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<div class="square100x100 red"></div>
<div class="square142x142 white"></div>
</body>
</html>
Enter to Rename, Shift+Enter to Preview
css
css
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
div {
position:absolute;
}
.square100x100 {
width:100px;
height:100px;
transform:rotateZ(45deg);
left:calc(50% - 50px);
top:10%;
margin-top:5%;
}
.square142x142 {
width:142px;
height:142px;
left:calc(50% - 71px);
top:10%;
margin-top:10%;
}
.red {
background: red;
}
.white{
background: white;
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run