-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiamond.html
More file actions
50 lines (50 loc) · 1.05 KB
/
diamond.html
File metadata and controls
50 lines (50 loc) · 1.05 KB
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
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div class="diamond-container">
<div class="diamond-list">
<i></i>
<i></i>
</div>
</div>
<div class="test">
♦
</div>
</body>
<style>
.diamond-container{
width: 100px;
height: 100px;
position: relative;
}
.diamond-list {
position: absolute;
left: 25px;
top: -14px;
}
.diamond-container i{
display: block;
width: 0;
}
.diamond-container i:nth-child(2){
border-right: 25px solid transparent;
border-top: 40px solid #ff0000;
border-left: 25px solid transparent;
border-bottom: 25px solid transparent;
}
.diamond-container i:nth-child(1){
border-right: 25px solid transparent;
border-bottom: 40px solid #ff0000;
border-top: 25px solid transparent;
border-left: 25px solid transparent;
}
.test{
color: #ff0000;
font-size: 110px;
}
</style>
</html>