-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdisplay.css
More file actions
58 lines (51 loc) · 868 Bytes
/
Copy pathdisplay.css
File metadata and controls
58 lines (51 loc) · 868 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
/* option 1 */
.display-1 {
display: block;
width: 100%;
height: 100%;
background-color: #f0f0f0;
}
/* option 2 */
.display-2 {
display: none;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: #e0e0e0;
}
/* option 3 */
.display-3 {
display: inline;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
background-color: #d0d0d0;
}
/* option 4 */
.display-4 {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
width: 100%;
height: 100%;
background-color: #c0c0c0;
}
/* option 5 */
.display-5 {
display: grid;
width: 100%;
height: 100%;
background-color: #b0b0b0;
}
/* option 6 */
.visibility-6 {
visibility: hidden;
}
/* option 7 */
.visibility-7 {
visibility: visible;
}