Build a House Painting - Build a House Painting

Tell us what’s happening:

please kindly help me with this step have done everything excepot no 44

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>
/* file: styles.css */
#house {
  position: relative;
  width: 500px;
  height: 400px;
  border: 2px solid black;
  background-color: lightgray;
}
#chimney{
  position: absolute;
  width: 60px;
  height: 100px;
  border: 2px solid black;
  background-color: darkred;
top:150px;
  z-index:-1;
}
#roof {
  position: absolute;
  width: 500px;
  height: 100px;   
  top: 0;          
  left: 0;
  border: 2px solid black;
  background-color: white;
  z-index: 1;      
}
#window-1 {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid black;
  background-color: lightblue;
  top: 120px;
  left:70px      
}
#window-2 {
  position: absolute;
  width: 50px;
  height: 50px;
  border: 2px solid black;
  background-color: lightblue;
  top: 120px;
  right:70px;      
}
#door {
  position: absolute;
  width: 100px;
  height: 150px;
  border: 2px solid black;
  background-color: brown;
 bottom: 0;        
  left: 200px; 
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36

Challenge Information:

Build a House Painting - Build a House Painting

Someone recently posted what I thought was a good response to this issue, so I’m going to paraphrase.

If you positioned your chimney with top: 0px, that would put the top of the chimney flush with the top of the house. So, try using a negative value to put the bottom of the chimney flush with the top of the house.

1 Like

thank you i follow this instruction and it work