-
Notifications
You must be signed in to change notification settings - Fork 1
/
三个圆自适应.html
52 lines (52 loc) · 894 Bytes
/
三个圆自适应.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
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
.father {
display: flex;
flex-direction: row;
}
.pad {
width: 33.33%;
border-radius: 50%;
padding-top: 33.33%;
background-color: yellow;
}
.aft{
width: 33.33%;
border-radius: 50%;
background-color: green;
}
.aft::after{
content: '';
display: block;
margin-top: 100%;
}
.vww{
width: 33.33vw;
border-radius: 50%;
height: 33.33vw;
background-color: red;
}
</style>
</head>
<body>
padding/margin用百分比时,是相对父元素的宽度。
<div class="father">
<div class="pad"></div>
<div class="pad"></div>
<div class="pad"></div>
</div>
<div class="father">
<div class="aft"></div>
<div class="aft"></div>
<div class="aft"></div>
</div>
<div class="father">
<div class="vww"></div>
<div class="vww"></div>
<div class="vww"></div>
</div>
</body>
</html>