как в этом задании определить размеры блоков и почему не срабатывает layout-positioner?
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header {
background-color: #c0392b ;
margin: 5px;
width: 250px;
height: 30px;
color: white;
}
.menu {
background-color: #3498DB ;
height: 20px;
}
.promo1 {
background-color: #c0392b ;
width: 100px;
height: 40px;
margin: 5px;
float: left;
}
.promo2 {
background-color: #c0392b ;
width: 100px;
height: 40px;
margin: 5px;
float: left;
}
.left {
background-color: #3498DB ;
width: 60px;
height: 100px;
float: left;
margin: 5px;
}
.main {
background-color: #3498DB ;
width: 160px;
height: 100px;
float: left;
margin: 5px;
}
.right {
background-color: #3498DB ;
width: 60px;
height: 100px;
float: left;
margin: 5px;
}
.footer {
height: 30px;
background-color: #34495e ;
}
.block1 {
background: #34495e ;
display: block;
}
.block2 {
display: block;
}
.clearfix::after {
display: table;
content: “”;
clear: both;
}
.layout-positioner {
width: 450px;
margin: 0 auto;
border: 2px dashed blue;
}
.layout-positioner::after {
display: table;
content: “”;
clear: both;
/*
Используемые цвета:
#34495e – мокрый асфальт
#c0392b – красный
#3498DB – синий
Ineska
28.Декабрь.2016 20:24:43
2
Размеры подбираете, ориентируясь по вкладке “Различия” или измеряя с помощью линейки в инструментах разработки. Ширина .layout-positioner должна быть меньше чем у body, иначе центровка работать не будет.
1 лайк
я извиняюсь но где находиться эта линейка?я не в курсе просто
не могу понять почему хедер прилип к верху и не отлипает у меня мозг плавиться от этих маргинова и ничегот не работает
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 335px;
font-family: “Arial”, sans-serif;
font-size: 10px;
color: white;
}
.header {
margin-bottom: 10px;
background-color: #c0392b;
width: 350px;
height: 30px;
color: white;
}
.menu {
background-color: #3498DB ;
width: 350px;
height: 20px;
margin-bottom: 10px;
padding: 5px;
}
.promo1 {
background-color: #c0392b ;
width: 170px;
height: 60px;
margin-bottom: 10px;
margin-top: 10px;
float: left;
}
.promo2 {
background-color: #c0392b ;
width: 170px;
height: 60px;
margin-left: 10px;
float: left;
margin-top: 10px;
}
.left {
background-color: #3498DB ;
width: 70px;
height: 110px;
float: left;
margin-top: 10px;
}
.main {
background-color: #3498DB ;
width: 190px;
height: 110px;
float: left;
margin-top: 10px;
margin: 10px;
}
.right {
background-color: #3498DB ;
width: 70px;
height: 110px;
float: left;
margin-top: 10px;
margin-bottom: 10px;
}
.footer {
height: 35px;
background-color: #34495e ;
}
.block1 {
background: #34495e;
}
.block2 {
background: #34495e ;
}
.block3 {
background: #3498DB ;
}
.clearfix::after {
display: table;
content: “”;
clear: both;
}
.layout-positioner {
width: 350px;
margin: 0 auto;
}
.layout-positioner::after {
display: table;
content: “”;
clear: both;
}
/*
Ineska
29.Декабрь.2016 05:33:06
5
В курсе “Блочная модель документа” рассказывали про выпадающие внешние отступы.
Линейка находится в инструментах разработчика. Находится в инспекторе, его можно открыть через меню браузера.