Skip to content

Commit 9e44358

Browse files
authored
Merge pull request #55 from AnggieAlava/bug/1493
Exercise 03, body background color changed to gray
2 parents bf08164 + 30f6c4f commit 9e44358

File tree

1 file changed

+13
-13
lines changed
  • exercises/03-Position-relative-vs-absolute

1 file changed

+13
-13
lines changed
Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
body {
2-
background: blue;
2+
background: gray;
33
}
44
#firstDiv {
5-
background: blue;
6-
width: 100px;
7-
height: 100px;
5+
background: blue;
6+
width: 100px;
7+
height: 100px;
88
}
99
#secondDiv {
10-
background: yellow;
11-
width: 100px;
12-
height: 100px;
10+
background: yellow;
11+
width: 100px;
12+
height: 100px;
1313
}
1414
.absolutePositionExample {
15-
position: absolute;
16-
top: 20px;
17-
left: 20px;
15+
position: absolute;
16+
top: 20px;
17+
left: 20px;
1818
}
1919
.relativePositionExample {
20-
position: relative;
21-
top: 20px;
22-
left: 20px;
20+
position: relative;
21+
top: 20px;
22+
left: 20px;
2323
}

0 commit comments

Comments
 (0)