18/18 Не получается сделать один из отступов кратным 5

Здравствуйте!
В комментарии к CSS написано, что все кратно 5.
а у меня отступ для .icon-comments получается 227рх
`.post {
position: relative;
padding-left: 75px;
}

.post-date, .post-type {
position: absolute;
left: 0;
width: 55px;
height: 55px;
border-bottom: 5px solid #bdc3c7;
}

.post-date {
font-size: 15px;
font-weight: bold;
text-align: center;
line-height: 55px;
background-color: #ffffff;
top: 0;
}

.post-type {
background: #7f8c8d center url(/assets/course14/quotes.png) no-repeat;
left: ;
top: 70px;
}

.post-title {
font-size: 20px;
color: #2980b9;
margin-bottom: 5px;
}

.post-author {
color: #7f8c8d;
margin-bottom: 5px;
}

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

.post-stats {
display: inline-block;
margin-right: 10px;
margin-left: 20px;
}

.post-stats .icon {
width: 15px;
height: 15px;
background-image: url(’/assets/course14/post-challenge.png’);
background-repeat: no-repeat;
position: absolute;

}

.icon-tags {
background-position: 0 0;
left: 75px;
}

.icon-comments {
background-position: -20px 0;
left: 227px;
}

.post-text {
position: absolute;
left: 75px;
width: 165px;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
background-color: #ffffff;
}`

где ошибка?

Вы не задали position: relative; для .post-stats.
Вот так оно будет:

.post-stats {
display: inline-block;
margin-right: 10px;
margin-left: 20px;
position: relative;
}

.icon-tags {
background-position: 0 0;
left: -20px;
}

.icon-comments {
background-position: -20px 0;
left: -20px;
}

Ого!
Спасибо!