hi, totally blind and using jaws for windows 2025 , windows 11 pro 2024. now doing the build a city skyline project. so please be gentle with me, and i cannot get the nested divs to pass. tried about 15 different times and did look at some one else code, to see what i am doing wrong. now it looks very similar. so as i cannot see, keep getting an error message. so will paste this, step 8 on the work shop. so can any one give me a hand and where i am going wrong and to then where to put the nexted divs. marvin.
ps: pasting the error message, my step and my html and css code.
You should create four new div
elementshttps://www.freecodecamp.org/learn/full-stack-developer/workshop-city-skyline/step-8
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>City Skyline</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main id="main-doc">
<section class="background-buildings">
<div class="bb1"></div>
<div class="bb2"></div>
<div class="bb3"></div>
<div class="bb4"></div>
</section>
</main>
</body>
</html>
* {
border: 1px solid black;
box-sizing: border-box;
}
body {
height: 100vh;
margin: 0;
overflow: hidden;
}
.background-buildings {
width: 100%;
height: 100%;
}
.bb1 {
width: 10%;
height: 70%;
}