Подскажите как растянуть фон меню во всю ширину, если его центрует positioner, и в целом адекватность кода.
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header {
background: #34495e;
}
.header-block {
background:#c0392b;
margin:10px 0px;
min-height:25px;
padding:5px;
}
.promo {
background:#c0392b;
margin:10px 0px;
min-height:50px;
width:160px;
float:left;
padding:5px;
}
.promo2{
margin-left:10px}
.left {
background:#3498DB;
float:left;
width:60px;
margin:10px 0px;
padding:5px;
min-height:100px;
}
.main{
background:#3498DB;
float:left;
margin:10px;
width:180px;
padding:5px;
min-height:100px;
}
.right {
background:#3498DB;
float:right;
width:60px;
padding:5px;
margin-top:10px;
min-height:100px;
}
.footer {
background: #34495e;
min-height:30px;
padding:5px;
}
.lcenter{
width:350px;
margin:auto;
border: 1px dashed yellow;
}
.lcenter::after {
content: “”;
display: table;
clear: both;
}
.menu {
background:#3498DB;
min-height:25px;
padding:5px;
margin:0px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class=header>
<div class="lcenter">
<div class="header-block">Header</div>
<div class="menu">Menu</div>
<div class="promo promo1">Promo 1</div>
<div class="promo promo2">Promo 2</div>
</div>
</div>
<div class="features">
<div class="lcenter">
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
</div>
</div>
<div class="footer">
<div class="lcenter">
<div class="footer-block">Footer</div>
</div>
</div>
</body>
`