blob: 4f85b745150b18eae0d9531ea14dd6bea4624b56 (
plain) (
blame)
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
|
body {
background-color: rgb(200, 255, 255)
}
#hello {
background-color: blue;
color: red
}
#kitty {
position: absolute;
top: 200px;
left: 100px;
border-color: rgb(0, 0, 0);
border-width: 10px
}
#boxa {
position: absolute;
top: 50px;
left: 500px;
width: 100px;
height: 100px;
background-color: rgba(255, 0, 0, 0.5)
}
#boxb {
position: absolute;
top: 70px;
left: 580px;
width: 100px;
height: 100px;
background-color: rgba(0, 255, 0, 0.5)
}
#boxc {
position: absolute;
top: 130px;
left: 550px;
width: 100px;
height: 100px;
background-color: rgba(0, 0, 255, 0.5)
}
|