Где я ошибся?
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="top">
<div class="layout-positioner">
<div class="header">Header</div>
</div>
<div class="menu">
<div class="layout-positioner">
Menu
</div>
</div>
<div class="layout-positioner">
<div class="promo1">
Promo 1
</div>
<div class="promo2">
Promo 2
</div>
</div>
</div>
<div class="layout-positioner">
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
</div>
<div class="footer">
<div class="layout-positioner">
Footer
</div>
</div>
</body>
</html>
Summary
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.layout-positioner {
box-sizing: border-box;
width: 350px;
margin: 0px auto;
}
.top {
background-color: #34495e;
padding-top: 10px;
padding-bottom: 10px;
margin-bottom: 10px;
}
.header {
box-sizing: border-box;
background-color: #c0392b;
padding: 5px;
height: 35px;
margin-bottom: 10px;
}
.menu {
background-color: #3498db;
height: 35px;
}
.menu .layout-positioner {
padding: 5px;
width: 350px;
}
.promo1,
.promo2 {
box-sizing: border-box;
float: left;
width: 170px;
height: 60px;
background-color: #c0392b;
margin-right: 10px;
padding: 5px;
}
.promo2 {
margin-right: 0px;
}
.top :nth-child(3) {
margin-top: 10px;
}
.top :nth-child(3)::after {
content: “”;
display: table;
clear: both;
}
.left {
box-sizing: border-box;
width: 70px;
background-color: #3498DB;
height: 110px;
padding: 5px;
margin-right: 10px;
float: left;
}
.main {
box-sizing: border-box;
width: 190px;
background-color: #3498DB;
height: 110px;
padding: 5px;
margin-right: 10px;
float: left;
}
.right {
box-sizing: border-box;
width: 70px;
background-color: #3498DB;
height: 110px;
padding: 5px;
float: left;
}
body :nth-child(2)::after{
content: “”;
display: table;
clear: both;
}
.footer {
background-color: #34495e;
margin-top: 10px;
}
.footer .layout-positioner {
padding: 5px;
box-sizing: border-box;
min-height: 45px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/