Что я делаю не так?
Код:
HTML:
Испытание: строим сетку <div class="wrapper">
<div class="header color1"> Header </div>
</div>
<div class="menu color2"> Menu </div>
<div class="wrapper">
<div class="promo1 color1"> Promo 1 </div>
<div class="promo2 color1"> Promo 2 </div>
</div>
</div>
<div class="wrapper">
<div class="left color2"> Left </div>
<div class="main color2"> Main </div>
<div class="right color2"> Right </div>
</div>
<div class="footer"> Footer </div>
</body>
CSS:
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.headerBG {
background-color: #34495e;
}
.wrapper {
width: 350px;
margin: 0 auto;
padding: 10px 0;
}
.wrapper:after {
content: " ";
display: table;
clear: both;
}
.color1 {
background-color: #c0392b;
}
.color2 {
background-color: #3498DB;
}
.header {
width: 350px;
margin: 0 auto;
height: 35px;
}
.menu {
height: 35px;
}
.promo1 {
float: left;
width: 170px;
height: 55px;
}
.promo2 {
float: left;
width: 170px;
margin-left: 10px;
height: 55px;
}
.left {
float: left;
width: 70px;
height: 110px;
}
.main {
float: left;
width: 190px;
height: 110px;
margin-left: 10px;
}
.right {
float: right;
width: 70px;
height: 110px;
}
.footer {
background-color: #34495e;
height: 30px;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/