-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout2.css
More file actions
47 lines (46 loc) · 841 Bytes
/
Copy pathlayout2.css
File metadata and controls
47 lines (46 loc) · 841 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
.container{
text-align: center;
}
header{
width: 99%;
border: 4px solid black;
height: 100px;
margin-top: 10px;
background-color: purple;
}
#conimage{
width: 99.6%;
margin-top: 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
#condiv{
width: 99.6%;
margin-top: 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
img{
width: 100%;
height: 99.8%;
}
.col-left {
background-color: maroon;
width: 32%;
border: 4px solid black;
height: 250px;
}
.col-mid {
background-color: lightgreen;
width: 32%;
border: 4px solid black;
height: 250px;
}
.col-right {
background-color: orange;
width: 32%;
border: 4px solid black;
height: 250px;
}