-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle16.css
More file actions
52 lines (43 loc) · 845 Bytes
/
style16.css
File metadata and controls
52 lines (43 loc) · 845 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
.box{
height: 400px;
width: 600px;
background-color: cornflowerblue;
margin: 30px;
/* position: relative; */
}
.box div{
display: inline-block;
}
#div1{
height: 100px;
width: 100px;
background-color: brown;
border-radius: 50%;
/* position: static;
top: 100px;
left: 200px; */
}
#div2{
height: 100px;
width: 100px;
background-color: rgb(2, 33, 25);
border-radius: 50%;
/* position: relative;
left: 60px;
top: 50px; */
}
#div3{
height: 100px;
width: 100px;
background-color: rgb(1, 64, 18);
border-radius: 50%;
position: absolute;
/* left: 30px; */
top: 100px;
}
#div4{
height: 100px;
width: 100px;
background-color: rgb(50, 64, 1);
/* border-radius: 50%; */
}