Сетки / Испытание: строим сетку [27/32] Сделал на 100% но есть один момент.

Всем доброго времени суток. Вроде все сделал, но не смог победить margin-top у хедера и margin-bottom после блока с колонками Promo 1, Promo 2. Я использовал padding: 10px 0; на обертке с фоном вокруг хедера, меню и этих колонок, но думаю это костыль, понимаю, что это из-за схлопывания отступов, но для этого задания не смог сделать, подскажите как можно без padding’а все таки сделать? Или и так тоже делается? Заранее спасибо!

HTML:

<!DOCTYPE html>
<html lang="ru
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="background-wrapper">
            <div class="layout-positioner">
                <div class="header">
                    <p>Header</p>
                </div>
            </div>
            <div class="menu">
                <div class="layout-positioner">
                    <p>Menu</p>
                </div>
            </div>
            <div class="promo clearfix">
                <div class="layout-positioner">
                    <div class="promo-column">
                        <p>Promo 1</p>
                    </div>
                    <div class="promo-column">
                        <p>Promo 2</p>
                    </div>
                </div>
            </div>
        </div>
        <div class="content clearfix">
            <div class="layout-positioner">
                <div class="content-column">
                    <p>Left</p>
                </div>
                <div class="content-column">
                    <p>Main</p>
                </div>
                <div class="content-column">
                    <p>Right</p>
                </div>
            </div>
        </div>
        <div class="footer">
            <div class="layout-positioner">
                <p>Footer</p>
            </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;
}

p {
margin: 0;
padding: 5px;
}

.background-wrapper {
padding: 10px 0;
background: #34495e;
}

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

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

.header {
width: 350px;
min-height: 35px;
background-color: #c0392b;
}

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

.promo-column {
background-color: #c0392b;
min-height: 60px;
float: left;
width: 170px;
margin-right: 10px;
}

.promo-column:last-child {
margin-right: 0;
}

.content-column {
background: #3498DB;
min-height: 110px;
float: left;
width: 70px;
margin-right: 10px;
}

.content-column:nth-child(2) {
width: 190px;
}

.content-column:last-child {
margin-right: 0;
}

.background-wrapper,
.header,
.menu,
.content {
margin-bottom: 10px;
}

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

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

1 лайк