Испытание: анонс поста [18/18] - 98% 0 почему?

Ребят, подскажите, почему 98%? Я вижу, что есть неточность в 1-2 пикселя при позиционировании иконок комментария и тега, т.е. мог бы поменять позиционирование на те самые 1-2 пикселя и скорее всего было бы 100%, но в условиях написано, что все должно быть кратно 5. В чем у меня недочет?

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

body {
width: 280px;
min-height: 250px;
padding: 0px;
font-size: 12px;
font-family: “Arial”, sans-serif;
line-height: 1.2;
color: #7f8c8d;
background: white;
}

/Картинка дата/
.post .post-date {
position: absolute;
background-color: white;
width: 55px;
height: 55px;
top: 50px;
left: 10px;
font-size: 15px;
font-weight: bold;
text-align: center;
line-height: 55px;
border-bottom: 5px solid #bdc3c7;
}

/Картинка кавычки/
.post .post-type {
position: absolute;
background-color:#7f8c8d;
background-image: url("/assets/course14/quotes.png") ;
background-repeat: no-repeat;
background-position: center;
width: 55px;
height: 55px;
top: 120px;
left: 10px;
border-bottom: 5px solid #bdc3c7;
}

/Общий блок со всем содержимым/
.post {
background: #ecf0f1;
padding-top: 50px;
padding-left: 85px;
position: relative;
width: 215px;
height: 250px;
}

/Ссылки/
.post a {
text-decoration: none;
color: #2980b9;
}

/Блоки с текстом интенсив и цифрой 5/
.post .post-stats{
display: inline-block;
padding-left: 20px;
padding-right: 10px;
}

/Заголовок/
.post .post-title {
font-size: 20px;
color: #2980b9;
padding-bottom: 5px;
}

/Автор/
.post .post-author {
color: #7f8c8d;
padding-bottom: 5px;
}

/Текст поста/
.post .post-text {
background-color: white;
margin-right: 20px;
padding-left: 15px;
padding-top: 10px;
padding-right: 10px;
padding-bottom: 10px;
margin-bottom: 10px;
border-bottom: 5px solid #bdc3c7;
}

/Иконки/
.post-stats .icon {
width: 15px;
height: 15px;
position: absolute;
}

/Иконка перед словом интенсив/
.post-stats .icon-tags {
background-image: url("/assets/course14/post-challenge.png");
background-repeat: no-repeat;
background-position: 0 0;
left: 85px;
top: 100px;
}

/Иконка комментария/
.post-stats .icon-comments {
background-image: url("/assets/course14/post-challenge.png");
background-repeat: no-repeat;
left: 235px;
top: 100px;
background-position: -20px 0;
}

/*
Все размеры, отступы, координаты, размеры шрифтов (не заданные в body) кратны 5 или 10.
Адреса картинок:
/assets/course14/quotes.png
/assets/course14/post-challenge.png
Картинка «кавычки» выровнена по центру
*/

В .post .post-stats добавьте position: relative;

Теперь измените (подправьте) координаты иконок…


background-image: url("/assets/course14/post-challenge.png");
background-repeat: no-repeat;
Можно перенести в .post-stats .icon

1 лайк