Tell us what’s happening:
Problems with:
42. Your #door should be placed at the bottom of the house.
44. Your #chimney should have a top value that puts it at the top of your #house.
The door is exactly on the line of the border of the house and the chimney is exactly in line with the roof. The roof, being set as required at “0” is slightly below the top of the house. I’ve tried to align the chimney with the top of the house as well and it still fails.
I’ve played with each of these settings by + or - w/o success.
Your code so far
<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>House Painting</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div id="house">
<div id="chimney"></div>
<div id="roof"></div>
<div id="window-1"></div>
<div id="window-2"></div>
<div id="door"></div>
</div>
</body>
</html>
#house {
position: relative;
top: 300px;
left: 15px;
border: 2px solid black;
width: 500px;
height: 400px;
background-color: brown;
z-index: 2;
}
#chimney {
position: absolute;
top: -53px;
left: -1px;
background-color: tomato;
border: 2px solid black;
height: 50px;
width: 30px;
z-index: 1
}
#roof {
position: absolute;
top: 0;
left: -13px;
background-color: bisque;
height: 3px;
width: 525px;
border: 2px solid black;
}
#window-1 {
position: absolute;
top: 150px;
left: 25px;
background-color: cornsilk;
border: 2px solid black;
width: 100px;
height: 150px;
}
#window-2 {
position: absolute;
top: 150px;
left: 375px;
background-color: cornsilk;
border: 2px solid black;
width: 100px;
height: 150px;
}
#door {
position: absolute;
top: 198px;
left: 210px;
background-color: darkkhaki;
border: 2px solid black;
width: 75px;
height: 200px;
}
Your browser information:
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:144.0) Gecko/20100101 Firefox/144.0
Challenge Information:
Build a House Painting - Build a House Painting
https://www.freecodecamp.org/learn/full-stack-developer/lab-house-painting/build-a-house-painting
