Tell us what’s happening:
me ayudan? no entiendo la consigna,que me falta? en que fallo? paso 44 y paso 46
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">
<link rel="stylesheet" href="styles.css">
<title>House Painting</title>
</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;
background-color: #456;
border: 3px solid #000;
}
#house div {
position: absolute;
width: 100%;
height: 100%;
border: 2px solid #879;
background-color: #666;
}
#chimney {
position:absolute;
top: 0;
z-index: -1;
width: 200px;
height: 300px;
background-color: #1098;
border: 2px solid #000;
}
#roof {
position: absolute;
width: 200px;
height: 100px;
border: 1px solid yellow;
background-color: green;
}
#window-1 {
position: absolute;
top: 80px;
left: 30px;
width: 200px;
height: 300px;
border: 3px solid pink;
background-color: orange;
}
#window-2 {
position:absolute;
top: 80px;
right: 35px;
width: 200px;
height: 300px;
border: 4px solid #666;
background-color: #118;
}
#door {
position: absolute;
bottom: 0;
left: 50px;
width: 200px;
height: 300px;
border: 5px solid green;
background-color: white;
}
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36
Challenge Information:
Build a House Painting - Build a House Painting
