Дорый день!
Помогите, кто-нибудь, не могу выронить блоки по центру. Центровщик не работает, не могу понять в чем причина.
<body>
<div class="fon">
<div class="header">
<div class="layout-positioner">
Header
</div>
</div>
<div class="Menu">
<div class="layout-positioner">
Menu
</div>
</div>
<div class="layout-column">
<div class="layout-positioner">
<div class="column1"> Promo 1
</div>
<div class="column2"> Promo 2
</div>
</div>
</div>
</div>
<div class="layout-content">
<div class="layout-positioner">
<div class="column-left"> Left
</div>
<div class="column-main"> Main
</div>
<div class="column-right"> Right
</div>
</div>
</div>
<div class="footer">
<div class="layout-positioner">
Footer
</div>
</div>
</body>
СSS
/html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header {
width: 350px;
min-height: 30px;
background: #c0392b;
margin-bottom: 10px;
}
.Menu {
width: 450px;
min-height: 40px;
background: #3498DB;
margin-bottom: 10px;
}
.layout-column {
margin-bottom: 10px;
}
.column1 {
width: 170px;
min-height: 60px;
background: #c0392b;
float: left;
margin-bottom: 10px;
}
.column2 {
width: 170px;
min-height: 60px;
background: #c0392b;
float: right;
}
.layout-content {
display: inline-block;
margin: 10px 10px;
}
.column-left {
display: inline-block;
width: 70px;
min-height: 100px;
background: #3498DB;
}
.column-main {
display: inline-block;
width: 200px;
min-height: 100px;
background: #3498DB;
}
.column-right {
display: inline-block;
width: 70px;
min-height: 100px;
background: #3498DB;
}
.footer {
min-height: 30px;
background: #34495e;
}
.layout-positioner::after {
content: “”;
display: table;
clear: both;
}
.layout-positioner {
width: 400px;
margin: 0 auto;
border: 2px dashed black;
}
.fon {
background: #34495e;
}
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
*/