Добрый день. Посмотрите, пожалуйста код. Что можно исправить?
И сразу вопрос. Можно центровщик использовать как распорку (как в моем коде)? Или лучше делать псевдоэлементом, и почему, если так?
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="header">
<div class="l-positioner">
<div class="h-cont">Header</div>
</div>
<div class="menu">
<div class="l-positioner">
<div class="m-cont">Menu</div>
</div>
</div>
<div class="l-positioner">
<div class="promo promo1">Promo 1</div>
<div class="promo promo2">Promo 2</div>
</div>
</div>
<div class="l-positioner">
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
</div>
<div class="footer">
<div class="l-positioner">
<div class="f-cont">Footer<div>
</div>
</div>
</body>
CSS:
`html,
body {
margin: 0;
padding: 0;
box-sizing: border-box;
}
*, *:after, *:before {box-sizing: inherit;}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.l-positioner {
width: 350px;
margin: 0 auto;
display: table;
clear: both;
}
.header, .footer {
background: #34495e;
}
.h-cont {
background: #c0392b;
margin: 10px 0px;
min-height: 35px;
padding: 5px;
}
.menu {
background: #3498DB;
min-height: 35px;
}
.m-cont {
padding: 5px;
}
.promo {
background: #c0392b;
width: 170px;
min-height: 60px;
margin: 10px 0;
padding: 5px;
}
.promo1 {float: left;}
.promo2 {float: right;}
.left,
.main,
.right {
background: #3498DB;
padding: 5px;
min-height: 110px;
margin: 10px 10px 10px 0;
float: left;
}
.left {
width: 70px;
}
.main {
width: 190px;
}
.right {
width: 70px; margin-right: 0px;
}
.f-cont {
height: 35px;
padding: 5px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/`