forked from kokonior/CSS-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAditya973.css
More file actions
39 lines (32 loc) · 811 Bytes
/
Aditya973.css
File metadata and controls
39 lines (32 loc) · 811 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
*{
box-sizing: border-box;
}
header{
border: 2px solid red;
margin: auto;
width: 1000px;
background-color: lightblue;
}
img{
margin: auto;
display: block;
width: 75px;
}
h3{
margin: 0px;
text-align: center;
font-family: Georgia, 'Times New Roman', Times, serif;
}
.box{
border: 2px solid green;
margin: auto;
padding: 20px;
display: inline-block;
width: 33%;
background-color: beige;
}
.container{
border: 2px solid red;
margin: auto;
width:1200px;
}