[details=Скриншот с наложением]http://i.imgur.com/0wwr8Og.png
http://i.imgur.com/sdxR6tW.png[/details]
код(мусор)
html
<!DOCTYPE html>
<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="wrapper">
<div class="header">Header</div>
<div class="autowidth">
<div class="menu">Menu</div>
</div>
<div class="promo clearfix">
<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="autowidthf">
<div class="footer">Footer</div>
</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;
}
.clearfix::after {
display: table;
content: "";
clear: both;
}
.wrapper {
background-color: #34495e;
padding-top: 10px;
}
.header {
padding: 5px;
width: 340px;
height: 25px;
background-color: #c0392b;
margin: 0px auto;
}
.autowidth {
width: 440px;
height: 30px;
background-color: #3498DB;
margin: 10px 0px;
padding-top: 5px;
padding-left: 10px;
}
.menu {
margin: 0px auto;
width: 350px;
}
.promo {
width: 350px;
margin: 0px auto;
}
.promo1{
background-color: #c0392b;
height: 55px;
float: left;
width: 165px;
margin-right: 10px;
padding-top: 5px;
padding-left: 5px;
margin-bottom: 10px;
}
.promo2{
background-color: #c0392b;
height: 55px;
float: right;
width: 165px;
padding-top: 5px;
padding-left: 5px;
}
.features {
width: 350px;
margin: 10px auto;
}
.left {
height: 105px;
float: left;
background-color: #3498DB;
width: 65px;
margin-right: 10px;
padding-top: 5px;
padding-left: 5px;
}
.main {
width: 185px;
float: left;
background-color: #3498DB;
height: 105px;
padding-top: 5px;
padding-left: 5px;
}
.right {
height: 105px;
float: right;
background-color: #3498DB;
width: 65px;
margin-left: 10px;
padding-top: 5px;
padding-left: 5px;
}
.autowidthf {
width: 450px;
height: 30px;
background-color: #34495e;
margin: 10px 0px;
padding-top: 5px;
padding-left: 5px;
}
.footer {
margin: 0px auto;
width: 350px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/
Визуально результат и образец выглядят одинаково. Вкладка с различиями выделяет оба “промо” и “меню”. Что с ними не так?