Добрый день.
Как не задавать height руками в этом блоке? Что я делаю не так?
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="header-full">
<div class="header">Header</div>
<div class="menu">
<span>Menu</span>
</div>
<div class="promo">
<div class="promo1">Promo 1</div>
<div class="promo2">Promo 2</div>
</div>
</div>
<div class=Left
Main
Right
Footer
</body>
</html>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: "Arial", sans-serif;
font-size: 10px;
color: white;
box-sizing: border-box;
}
.header-full {
width: 450px;
background: #34495e;
padding-top: 5px;
//height: 165px;
}
.header {
width: 350px;
background: #c0392b;
margin: 5px auto;
padding-top: 5px;
padding-left: 5px;
height: 30px;
}
.menu {
margin-top: 10px;
background: #3498DB;
padding-top: 5px;
padding-left: 5px;
height: 30px;
}
.menu span {
display: block;
width: 350px;
margin: 0 auto;
}
.promo {
width: 350px;
margin: 10px auto;
}
.promo1 {
float: left;
width: 170px;
background: #c0392b;
padding-top: 5px;
padding-left: 5px;
height: 60px;
box-sizing: border-box;
}
.promo2 {
float: right;
width: 170px;
background: #c0392b;
padding-top: 5px;
padding-left: 5px;
height: 60px;
box-sizing: border-box;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/