<html lang="ru">
<head>
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="top">
<div class="clearfix"></div>
<div class="header">Header</div>
<div class="menu">Menu</div>
<div class="promo-1">Promo 1</div>
<div class="promo-2">Promo 2</div>
</div>
<div class="left">Left</div>
<div class="main">Main</div>
<div class="right">Right</div>
<div class="bottom">
<div class="clearfix"></div>
<div class="footer">Footer</div>
</div>
</body>
</html>
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-size: 10px;
font-family: “Arial”, sans-serif;
color: white;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498db – синий
*/
.top{
background-color: #34495e;
height:170px;
}
.clearfix{
content:"";
display:table;
clear:both;
}
.header{
background-color: #c0392b;
margin: 10px 50px;
height:30px;
padding: 5px 0 0 5px;
}
.menu{
background-color: #3498db;
height:30px;
padding: 5px 0 0 55px;
margin-bottom:10px;
}
.promo-1{
background-color: #c0392b;
float:left;
margin-left:50px;
height:55px;
width:165px;
padding:5px 0 0 5px;
}
.promo-2{
background-color: #c0392b;
float:right;
margin-right:50px;
height:55px;
width:165px;
padding:5px 0 0 5px;
}
.column{
}
.left{
float:left ;
background-color:#3498db;
height:105px;
width:65px;
margin: 10px 10px 10px 50px;
padding: 5px 0 0 5px;
}
.main{
float:left ;
background-color:#3498db;
height:105px;
width:185px;
margin: 10px 10px 10px 0px;
padding: 5px 0 0 5px;
}
.right{
float:left ;
background-color:#3498db;
height:105px;
width:65px;
margin: 10px 10px 10px 0px;
padding: 5px 0 0 5px;
}
.bottom{
background-color:#34495e;
clear:both;
height:40px;
}
.footer{
margin: 5px 0 0 55px;
}