итоговое испытание 18/18

Проверка дает 99%, но при наложении не видно ни одного исправления. Это баг отображения и в коде какая-то ошибка?

В html-редакторе ничего не меняла. CSS:
html, body { margin: 0; padding: 0; } body { width: 280px; min-height: 250px; padding-top: 50px; padding-left: 10px; padding-right: 10px; font-size: 0; font-family: "Arial", sans-serif; line-height: 1.2; color: #7f8c8d; background: #ecf0f1; } .post-stats .icon { width: 15px; height: 15px; } .post a { text-decoration: none; color: #2980b9; } .post { position: relative; margin-left: 75px; padding: 0; margin-top: 0; font-size: 0; } .post-title { color: #2980b9; font-size: 20px; white-space: nowrap; margin-bottom: 5px; } .post-date { position: absolute; left: -75px; top: 0; font-weight: bold; font-size: 15px; border-bottom: 5px solid #bdc3c7; background-color: #ffffff; width: 55px; line-height: 55px; text-align: center; } .post-type { position: absolute; background-image: url('/assets/course14/quotes.png'); background-repeat: no-repeat; background-position: 50% 50%; left: -75px; top: 70px; background-color: #7f8c8d; width: 55px; height: 55px; border-bottom: 5px solid #bdc3c7; } .post-author { margin-bottom: 5px; font-size: 12px; } .post-stats { display: inline; position: relative; margin-left: 20px; padding-right: 10px; font-size: 12px; white-space: nowrap; } .icon { position: absolute; left: -20px; } .icon-tags { background-image: url('/assets/course14/post-challenge.png'); background-repeat: no-repeat; background-position: 0 0; } .icon-comments { background-image: url('/assets/course14/post-challenge.png'); background-repeat: no-repeat; background-position: -20px 0; top: 0; } .post-text { background-color: #ffffff; padding: 10px 15px; border-bottom: 5px solid #bdc3c7; font-size: 12px; width: 165px; }

Нажмите на кнопку “Различия” и сами все увидите)

1 лайк

ой. про нее я как-то забыла, спасибо)) Обычно через наложения смотрю…

1 лайк

Как раз на этом задании, обязательно ли указывать позишн, или можно без него? И как правильно?

Помогите, люди добрые, 99% в задании. Цифра 5 съехала и возвращаться не хочет. Вопрос в следующем, как её поставить на место без копания в html? И корректно ли задан один класс разным дивам post-stats?


html,
body {
margin: 0;
padding: 0;
}

body {
width: 280px;
min-height: 250px;
padding-top: 50px;
padding-left: 10px;
padding-right: 10px;
font-size: 12px;
font-family: “Arial”, sans-serif;
line-height: 1.2;
color: #7f8c8d;
background: #ecf0f1;
}

.post-stats .icon {
width: 15px;
height: 15px;
}

/*
Все размеры, отступы, координаты, размеры шрифтов (не заданные в body) кратны 5 или 10.
Ардеса картинок:
/assets/course14/quotes.png
/assets/course14/post-challenge.png
Картинка “кавычки” выровнена по центру
*/
.post {
padding: 0;
margin-top: 0;
}

.post a {
text-decoration: none;
color: #2980b9;
}

.post-title {
font-size: 20px;
margin-left: 75px;
COLOR: #2980b9;
}

.post-date {
position: absolute;
display: inline-block;
width: 55px;
height: 55px;
top: 50px;
background-color: white;
border-bottom: 5px solid #bdc3c7;
line-height: 55px;
text-align: center;
font-size: 15px;
font-weight: bold;
}

.post-type {
position: absolute;
width: 55px;
height: 55px;
top: 120px;
border-bottom: 5px solid #bdc3c7;
background-color: #7f8c8d;
background-image: url("/assets/course14/quotes.png");
background-repeat: no-repeat;
background-position: 50% 50%;
}

.post-author {
margin: 5px 0 5px 75px;
font-size: 12px;
}

.post-stats {
display: inline;
position: relative;
margin-left: 95px;
font-size: 12px;
white-space: nowrap;
}

.post-text {
background-color: #ffffff;
color: #7f8c8d;
margin: 0 0 0 75px;
padding: 10px 15px 10px 15px;
border-bottom: 5px solid #bdc3c7;
width: 165px;
}

.icon {
position: absolute;
left: -20px;
}

.icon-tags {
background-image: url(’/assets/course14/post-challenge.png’);
background-repeat: no-repeat;
background-position: 0 0;
}

.icon-comments {
background-image: url(’/assets/course14/post-challenge.png’);
background-repeat: no-repeat;
background-position: -20px 0;
top: 0;
left: -85px;
}

Таким образом выглядит ваш код в моем браузере, без .post { position: relative;}


Там далеко не только пятерка съехала… Делайте выводы сами, нужен ли он.

1 лайк

.post-stats {
display: inline-block;
position: relative;
margin-left: 95px;
font-size: 12px;
white-space: nowrap;
margin-right:-65px;
}
вот так исправь
100%

1 лайк

Спасибоньки!

Пожалуйста:)