[27/32] Ширина во всю страницу.

Как проще задать ширину блока “Menu” во всю страницу? Мой вариант кажется каким-то костылем. Вариант с внутренними отступами не предлагать.

<div class="background-menu">
  <div class="layout-positioner">
    <div class="menu">Menu</div>
  </div>
</div>


.background-menu {
    background-color: #3498DB;
    min-height: 35px;
    margin: 10px 0 10px 0;
}

.menu {
    padding: 5px;
}
HTML
<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="box-header clearfix ">
            <div class="layout-positioner">
                <div class="header">Header</div>
            </div>
            <div class="background-menu">
                <div class="layout-positioner">
                    <div class="menu">Menu</div>
                </div>
            </div>
            <div class="layout-positioner">
                <div class="promo-1">Promo 1</div>
                <div class="promo-2">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="background-footer">
            <div class="layout-positioner">
                <div class="footer center">Footer</div>
            </div>
        </div>
    </body>
</html>
CSS
html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 450px;
    height: 335px;
    font-family: "Arial", sans-serif;
    font-size: 10px;
    color: white;
}

.box-header {
    background-color: #34495e;
    padding: 10px 0;
    margin-bottom: 10px;
}

.header {
    background-color: #c0392b;
    padding: 5px;
    height: 25px;
}

.background-menu {
    background-color: #3498DB;
    min-height: 35px;
    margin: 10px 0 10px 0;
}

.menu {
    padding: 5px;
}

.promo-1,
.promo-2 {
    float: left;
    background-color: #c0392b;
    width: 160px;
    min-height: 50px;
    padding: 5px;    
}

.promo-2 {
    margin-left: 10px;
}

.left,
.main,
.right {
    float: left;
    background-color: #3498DB;
    width: 60px;
    min-height: 100px;
    padding: 5px;
}

.main {
    width: 180px;
    margin: 0 10px 10px 10px;
}

.background-footer {
    background-color: #34495e;
    min-height: 35px;
}

.footer {
    padding: 5px;
}

.layout-positioner {
width: 350px;
margin: 0 auto;
}

.layout-positioner::after {
content: '';
display: table;
clear: both;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both; 
}


/*
    Используемые цвета:
    #34495e – мокрый асфальт
    #c0392b – красный
    #3498DB – синий
*/

Убрать блоки background-menu и background-footer, и в этих двух случаях вложить блок центровщик внутрь меню и подвала.

Центровщик устанавливает ширину блока в 350px, а мне надо на всю ширину страницы.

.layout-positioner {
width: 350px;
margin: 0 auto;
}

Ну так центровщик в случае с меню и подвалом будет центровать текст внутри этих блоков, а не сами блоки.

2 лайка