We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bf08164 + 30f6c4f commit 9e44358Copy full SHA for 9e44358
exercises/03-Position-relative-vs-absolute/styles.css
@@ -1,23 +1,23 @@
1
body {
2
- background: blue;
+ background: gray;
3
}
4
#firstDiv {
5
6
- width: 100px;
7
- height: 100px;
+ background: blue;
+ width: 100px;
+ height: 100px;
8
9
#secondDiv {
10
- background: yellow;
11
12
+ background: yellow;
13
14
.absolutePositionExample {
15
- position: absolute;
16
- top: 20px;
17
- left: 20px;
+ position: absolute;
+ top: 20px;
+ left: 20px;
18
19
.relativePositionExample {
20
- position: relative;
21
22
+ position: relative;
23
0 commit comments