- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
Latest commit
36 lines (36 loc) · 571 Bytes
/
Copy pathstyle.css
File metadata and controls
36 lines (36 loc) · 571 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
#container{
width:200px;
height:200px;
background: white;
position: relative;
top:100px;
left:40%;
}
#boxr{
width:50px;
height:50px;
background:rgba(255,0,0,0.7);
position: absolute;
}
#boxb{
width:50px;
height:50px;
background:rgba( 0,0,255,0.7);
position: absolute;
left:150px;
}
#boxg{
width:50px;
height:50px;
background:rgba( 0,255,0,0.7);
position: absolute;
top:150px;
}
#boxy{
width:50px;
height:50px;
background:rgba( 255,255,0,0.7);
position: absolute;
left:150px;
top:150px;
}