Skip to content

Commit

Permalink
Merge pull request #55 from AnggieAlava/bug/1493
Browse files Browse the repository at this point in the history
Exercise 03, body background color changed to gray
  • Loading branch information
alesanchezr authored Mar 12, 2024
2 parents bf08164 + 30f6c4f commit 9e44358
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions exercises/03-Position-relative-vs-absolute/styles.css
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
body {
background: blue;
background: gray;
}
#firstDiv {
background: blue;
width: 100px;
height: 100px;
background: blue;
width: 100px;
height: 100px;
}
#secondDiv {
background: yellow;
width: 100px;
height: 100px;
background: yellow;
width: 100px;
height: 100px;
}
.absolutePositionExample {
position: absolute;
top: 20px;
left: 20px;
position: absolute;
top: 20px;
left: 20px;
}
.relativePositionExample {
position: relative;
top: 20px;
left: 20px;
position: relative;
top: 20px;
left: 20px;
}

0 comments on commit 9e44358

Please sign in to comment.