Добрый день!
Помогите пожалуйста с заданием.
Выполнила задание на 98%. Но текст Menu и Footer немного смещен вправо…
Как это можно исправить?
И вообще смутные сомнения: а не понаписала ли я лишнего…
Дайте совет пожалуйста.
Заранее спасибо
<title>Испытание: строим сетку</title>
<meta charset="utf-8">
</head>
<body>
<div class="header clearfix">
<div class="layout-positioner">
<div class="header1">
Header
</div>
</div>
</div>
<div class="menu">
<div class="layout-positioner">
Menu
</div>
</div>
<div class="header2">
<div class="layout-positioner">
<div class="promo1">
Promo 1
</div>
<div class="promo2">
Promo 2
</div>
</div>
</div>
<div class="featers clearfix">
<div class="layout-positioner">
<div class="a">
<div class="left color">
Left
</div>
</div>
<div class="a">
<div class="main color">
Main
</div>
</div>
<div class="a">
<div class="right color">
Right
</div>
</div>
</div>
</div>
<div class="footer">
<div class="layout-positioner">
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;
}
.clearfix:after {
content: ‘’;
clear: both;
display: table;
}
.layout-positioner {
width: 350px;
margin: 0px auto;
}
.header {
background: #34495e;
height: 35px;
padding: 10px;
}
.header1 {
background: #c0392b;
width: 340px;
height: 25px;
margin-bottom: 10px;
padding: 5px;
}
.menu {
background: #3498db;
height: 25px;
padding: 5px;
padding-left: 10px;
}
.header2 {
background: #34495e;
height: 80px;
}
.promo1 {
background: #c0392b;
width: 160px;
height: 50px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
padding: 5px;
}
.promo2 {
background: #c0392b;
width: 160px;
height: 50px;
float: right;
padding: 5px;
margin-top: 10px;
}
.color {
background: #3498db;
padding: 5px;
}
.a {
float: left;
}
.left, .right {
width: 60px;
height: 100px;
}
.main {
width: 180px;
height: 100px;
margin-left:5px;
margin-right: 5px;
}
.left {
float: left;
margin-right: 5px;
}
.layout-positioner .a:last-child {
float: right;
}
.footer {
background: #34495e;
height: 30px;
padding: 5px;
padding-left: 10px;
}
.featers {
margin-top: 10px;
margin-bottom: 10px;
}