Ошибка в 100% решении

Подскажите, что я сделал не так?
До мухлежа с отступами (отметил жирным), задание не закрывалось.

HTML:


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

.container, .footer {
    background-color: #34495e;
}

.header, .column {
    background-color: #c0392b;
}

.menu, .content {
    background-color: #3498DB;
}

.container {
    **padding-top: 5px;**
    min-height: 165px;
}

.header {
   ** margin-top: -5px;**
    padding: 5px 0 0 5px;
    height: 30px;
    width: 345px;
}

.menu {
    height: 30px;
    padding: 5px 0 0 55px;
}

.column {
    float: left;
    margin-right: 10px;
    padding: 5px 0 0 5px;
    width: 165px;
    height: 55px;
}

.column2 {
    margin-right: 0px;
    
}

.content {
    float: left;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 5px;
    height: 100px;
}

.content1 {
    width: 60px;
}

.content2 {
    width: 180px;
}

.content3 {
    width: 60px;
    margin-right: 0;
}

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

.footer {
    clear: both;
    height: 35px;
    padding: 5px 0 0 55px;
}

.clearfix {
    clear: both;
    height: 0px;
}

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

И HTML не вставился.

Суть в том, что без margin: -5px, всё уползало вниз где-то на 10рх минимум, а без паддинга - белая полоска.



Это «выпадание» отступов. Рассматривается в задании https://htmlacademy.ru/courses/44/run/10.

Я тоже так подумал. Но при добавлении паддинга всё уезжает вниз - см. катринку №2.

Попробуйте убрать вертикальные margin-ы у центровщика и оперировать только padding-ами.

Спасибо, оказалось надо было margin у центровщика уменьшить на 5рх.

1 лайк