ssd.html
984 Bytes
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
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<style>
.P{
width: 30px;
height: 30px;
border-radius: 50%;
margin:200px auto;
padding: 3px;
background: #fff;
box-sizing: border-box;
position: relative;
box-shadow: 0 0 10px rgba(0,0,0,0.4);
z-index: 100;
}
.P>div{
background: #00FF00;
width: 100%;
height: 100%;
border-radius: 50%;
position: relative;
z-index: 101;
}
.P>span{
display: inline-block;
position: absolute;
width: 5px;
height: 5px;
transform: rotate(135deg);
background: #CE3C39;
bottom: -1px;
left: 12px;
background: #fff;
z-index: 99;
}
.P>p{
width: auto;
border: 1px solid #000;
position: absolute;
top: -40px;
height: 20px;
left: calc(width);
/*margin-left: -50%;*/
}
</style>
<body>
<div class="P">
<p>6556565665534654666666666666666666666666666</p>
<span></span>
<div></div>
</div>
</body>
</html>