<!DOCTYPE html>
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div>
<div class="header clearfix">
<div class="head">Header</div>
<div class="menu">Menu</div>
<div class="promo">
<div class="promo1">Promo 1</div>
<div class="promo2">Promo 2</div>
</div>
</div>
<div class="features clearfix">
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
</div>
<div class="footer clearfix">Footer</div>
</div>
</body>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: "Arial", sans-serif;
font-size: 10px;
color: white;
}
.header {
height: 160px;
background:#34495e;
padding-top:10px;
}
.clearfix::after {
display: table;
content: "";
clear:both;
}
.head {
background:#c0392b;
width:350px;
height:35px;
margin:0px auto 10px;
}
.menu {
background:#3498DB;
height:35px;
width:100%;
}
.promo{
width:350px;
height:60px;
margin: 10px auto;
}
.promo1,
.promo2 {
background:#c0392b;
float:left;
width:170px;
height:60px;
}
.promo1 {
margin-right:10px;
}
.features {
width:350px;
height:110px;
margin: 10px auto;
}
.left,
.right {
background:#3498DB;
float:left;
width:70px;
height:110px;
}
.left {
margin-right: 10px;
}
.main {
background:#3498DB;
float:left;
width:190px;
height:110px;
margin-right: 10px;
}
.footer {
background:#34495e;
height:35px;
width:100%;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/
проанализировав понимаю, что немного накасячил с названиями классов, но в целом сетка получилась такая же как в образце. Единственное не понятно почему надписи в блоках располагается не так как в образце. Помогите разобраться) Спасибо.