-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.css
More file actions
86 lines (59 loc) · 920 Bytes
/
test.css
File metadata and controls
86 lines (59 loc) · 920 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.top2 {
padding: 1% 10%;
width: 100%;
background-color: #29b078;
}
.row1 {
display: flex;
width: 100%;
}
.row1 div {
flex-basis: 300px;
border: 1px solid violet;
}
.flex-shrink-1 {
flex-shrink: 2;
}
.flex-shrink-2 {
flex-shrink: 2;
}
.flex-shrink-3 {
flex-shrink: 3;
}
.row2 {
display: flex;
width: 100%;
}
.row2 div {
border: 1px solid black;
word-break: break-all;
flex-basis: 0;
}
.grow1 {
flex-grow: 1;
}
.grow2 {
flex-grow: 2;
}
.grow3 {
flex-grow: 3;
}
.left,.center{float:left;width:200px;height:200px;background-color: #5cb85c}
.right{margin-left:400px; background-color: #5e57ff;height: 20px;}
.table1 {
display: table;
width: 100%;
}
.flex1 {
display: flex;
}
.flex1 div {
}
.import {
flex-grow: 2;
background-color: #b84764;
}
.flex11 {
background-color: #1d7ad9;
flex: 1 1 20px;
}