-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrand.html
56 lines (47 loc) · 976 Bytes
/
rand.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
53
54
55
56
<style>
.container-1{
display:flex;
}
.container-2{
display:flex;
justify-content: space-between;
}
.container-1 section,.container-2 section {
border: 1px #ccc solid;
padding: 10px;
}
.box-1 {
flex:1;
}
.box-2 {
flex:1;
}
.box-3 {
flex:1;
}
.container-2_box1 {
width : 30%;
}
.container-2_box2 {
width : 60%;
}
</style>
<section class = "container-1">
<section class = "box-1">
<h3>Box 1 Title here</h3>
</section>
<section class = "box-2">
<h3>Box 2 Title here</h3>
</section>
<section class = "box-3">
<h3>Box 3 Title here</h3>
</section>
</section>
<section class = "container-2">
<section class = "container-2_box1">
<h3>Box 1 Title here</h3>
</section>
<section class = "container-2_box2">
<h3>Box 2 Title here</h3>
</section>
</section>