[27/32] 100% Оцените пожалуйста код.

<!DOCTYPE html>
<html lang="ru">
    <head>
        <title>Испытание: строим сетку</title>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="main-header">
            <div class="layout-positioner">
                <div class="layout-header">Header</div>
            </div>
            <div class="header-menu">
                <div class="layout-positioner">
                    <div class="layout-menu">Menu</div>
                </div>
            </div>
            <div class="layout-positioner">
                <div class="layout-promo-1 layout-promo">Promo 1</div>
                <div class="layout-promo-2 layout-promo">Promo 2</div>
            </div>
        </div>
        <div class="main-features">
            <div class="layout-positioner">
                <div class="layout-column clearfix">
                    <div class="layout-left features">Left</div>
                    <div class="layout-main features">Main</div>
                    <div class="layout-right features">Right</div>
                </div>
            </div>
        </div>
        <div class="main-footer">
            <div class="layout-positioner">
                <div class="footer">Footer</div>
            </div>
        </div>
    </body>
</html>


html,
body {
    margin: 0;
    padding: 0;
}

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

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

.main-header {
    width: 450px;
    height: 160px;
    background-color: #34495e;
    padding-top: 10px;
}

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

.layout-header {
    width: 350px;
    height: 35px;
    background-color: #c0392b;
    padding: 5px;
    box-sizing: border-box;
}

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

.layout-menu {
    box-sizing: border-box;
    padding: 5px;
}

.layout-promo {
    margin-top: 10px;
    box-sizing: border-box;
    padding: 5px;
}

.layout-promo-1 {
    float: left;
    width: 170px;
    height: 60px;
    background-color: #c0392b;
}

.layout-promo-2 {
    float: right;
    width: 170px;
    height: 60px;
    background-color: #c0392b;
}

.features {
    box-sizing: border-box;
    padding: 5px;
    margin-top: 10px;
}

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

.layout-main {
    float: left;
    width: 190px;
    height: 110px;
    background-color: #3498DB;
}

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

.main-footer {
    height: 35px;
    background-color: #34495e;
    margin-top: 10px;
    box-sizing: border-box;
}

.footer {
    padding: 5px;    
}

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

В блоке с двумя колонками promo нет распорки. Фиксированные высоты у блоков лучше заменить на min-height.

Спасибо, исправлю =)