-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path(3.1).html
More file actions
138 lines (127 loc) · 3.7 KB
/
Copy path(3.1).html
File metadata and controls
138 lines (127 loc) · 3.7 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
</head>
<style>
.blue{
position:relative;
background-color:rgb(120, 189, 241);
font-size:37px;
font-family: 'Arial Narrow', Arial, sans-serif;
text-align: center;
color: aliceblue;
width: 2em;
top:0;
padding-bottom: 0.15em;
padding-top:0.9em;
margin-top: 0%;
border-radius: 0.2em;
}
.yellow{
position:absolute;
height:0.75em;
width: 2em;
top:0;
left: 0;
background-color: rgb(246, 203, 96);
border-top-right-radius: 0.2em;
border-top-left-radius: 0.2em;
}
.white{
position: absolute;
background-color: rgb(254, 254, 254);
width: 0.3em;
height: 0.5em;
left: 0.16em;
top: 0.13em;
border-radius: 0.2em;
}
.whites{
position: absolute;
background-color: rgb(251, 251, 251);
width: 0.3em;
height: 0.5em;
left: 0.62em;
top: 0.13em;
border-radius: 0.2em;
}
.whitess{
position: absolute;
background-color: rgb(253, 247, 247);
width: 0.3em;
height: 0.5em;
left: 1.08em;
top: 0.13em;
border-radius: 0.2em;
}
.whitesss{
position: absolute;
background-color: aliceblue;
width: 0.3em;
height: 0.5em;
left: 1.54em;
top: 0.13em;
border-radius: 0.2em;
}
.font{
font-size: 30px;
position: relative;
width: 14em;
left: 1em;
top: 1em;
display:inline;
}
.flexbox{
display:flex;
flex-direction:column;
}
.flexbox .flex1 img{
flex-direction:column;
width: 100vw;
flex: 1 1 auto;
}
.flexbox .flexbox2 .flex3 .font{
display: flex;
flex-direction:row;
width:99vw;
height: auto;
flex: 1 1 auto;
box-sizing: border-box;
}
.flexbox .flexbox2 .flex2{
display: flex;
flex-direction:column;
width: 100vw;
height: auto;
flex: 1 1 auto;
}
.flexbox .flexbox2{
display:flex;
flex-direction:row;
}
</style>
<body>
<div class="flexbox">
<div class="flex1" >
<img src="https://bcn.135editor.com/files/images/editor_styles/914d5a26c161623e3f650d92bb1fa069.png"/>
<p></p>
</div >
<div class="flexbox2">
<div class="flex2" >
<div class="blue">
<div class="yellow"></div>
<div class="white"></div>
<div class="whites"></div>
<div class="whitess"></div>
<div class="whitesss"></div>
<strong>01</strong>
</div>
</div>
<div class="flex3">
<div class="font"> 五一出游是大家期待已久的假期,也是许多人解压缓解压力、放松身心的好时机。在外游玩时,大家记得要注意安全,做好旅行攻略。</div>
</div >
</div>
</div>
</body>
</html>