Не могу растянуть меню по всей ширине хедера. Подскажите, как это сделать? И как еще можно оптимизировать код?
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<div class="layout-positioner">
<div class="layout red header">Header</div>
<div class="layout blue menu">Menu</div>
<div class="promos">
<div class="layout red promo1">Promo 1</div>
<div class="layout red promo2">Promo 2</div>
</div>
</div>
</header>
<main>
<div class="layout-positioner">
<div class="layout column blue left">Left</div>
<div class="layout column blue main">Main</div>
<div class="layout column blue right">Right</div>
</div>
</main>
<footer>
<div class="layout-positioner">
<div class="layout footer">Footer</div>
</div>
</footer>
</body>
</html>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-size: 10px;
font-family: "Arial", sans-serif;
color: white;
}
.red {
background: #c0392b;
}
.blue {
background: #3498db;
}
.layout-positioner {
margin: 0 auto;
width: 350px;
}
.layout-positioner::after {
content: "";
display: table;
clear: both;
}
.layout {
margin-bottom: 10px;
padding: 5px;
}
header {
margin-bottom: 10px;
background: #34495e;
padding-top: 10px;
}
.header {
height: 25px;
}
.menu {
height: 25px;
}
.promo1 {
float: left;
width: 160px;
height: 50px;
}
.promo2 {
float: right;
width: 160px;
height: 50px;
}
.column {
margin-right: 10px;
float: left;
width: 60px;
height: 100px;
}
.main {
width: 180px;
}
.right {
margin-right: 0;
}
footer {
background: #34495e;
height: 40px;
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498db – синий
*/