95% 18/18 подскажите пожалуйста что не так сделал ?

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;
}

.post {
padding: 0px;

margin-left: 75px

}

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

.post-date {
position: absolute;
top: 50px;
margin: 0px;
padding-top: 20px;
text-align: center;
height: 35px;
width: 55px;
left: 10px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
font-weight: bold;
font-size: 15px;
}

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

.post-author {

}

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

.post-stats {
margin-top: 5px;

}

.icon-tags {
float: left;
background: url("/assets/course14/post-challenge.png") no-repeat;
margin-right: 5px;
}

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

.post-stats {
display: inline-block;
}
.icon-comments {
float: left;
background: url("/assets/course14/post-challenge.png") 20px 0px;
margin-right: 5px;
margin-left: 10px;
}

.post-text {
display: block;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
margin: 0 10px 0 0;

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

У вас не хватает относительного позиционирования для .post. В этом задании не используются флоаты.

Исправил, теперь не могу собрать в одну строчку без флоатов , не понимаю зачем нужно здесь относительное позиционирование

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;
}

.post {
padding: 0px;
position: relative;
margin-left: 75px
}

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

.post-date {
position: absolute;
top: 0px;
margin: 0px;
padding-top: 20px;
text-align: center;
height: 35px;
width: 55px;
left: -75px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
font-weight: bold;
font-size: 15px;
}

.post-type {
position: absolute;
top: 70px;
left: -75px;
height: 55px;
width: 55px;
background: url("/assets/course14/quotes.png") #7f8c8d center no-repeat;
border-bottom: 5px solid #bdc3c7;
}

.post-author {

}

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

.post-stats {
margin-top: 5px;

}

.icon-tags {
display: inline block;
background: url("/assets/course14/post-challenge.png") no-repeat;
margin-right: 5px;
}

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

.icon-comments {
background: url("/assets/course14/post-challenge.png") 20px 0px;
margin-right: 5px;
margin-left: 10px;
}

.post-text {
display: block;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
margin: 0 10px 0 0;

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

.post-stats вы должны сделать блочно-строчными. Иконки в них спозиционировать абсолютно.
Задавая относительное позиционирование родителю .post, вы имеете возможность позиционировать блок даты и “кавычки” относительно блока .post, а не от верхнего левого угла окна в браузере, как было у вас изначально.
А заменив margin-left: 75px; на padding-left той же величины, вы можете избавиться от отрицательной координаты left: -75px;

Исправил, не могу подвинуть ссылки, хотя их спозиционировал относительно и они должны двигаться относительно начального своего места(начал с первой ссылки)

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;
}

.post {
position: relative;
padding-left: 75px
}

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

.post-date {
position: absolute;
top: 0px;
margin: 0px;
padding-top: 20px;
text-align: center;
height: 35px;
width: 55px;
left: 0px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
font-weight: bold;
font-size: 15px;
}

.post-type {
position: absolute;
top: 70px;
left: -0px;
height: 55px;
width: 55px;
background: url("/assets/course14/quotes.png") #7f8c8d center no-repeat;
border-bottom: 5px solid #bdc3c7;
}

.post-author {

}

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

.post-stats {
margin-top: 5px;
display: inline-block;

}

.icon-tags {
display: inline block;
position: absolute;
background: url("/assets/course14/post-challenge.png") no-repeat;
margin-right: 5px;
}

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

.post-stats a:first-child{
position: relative;
left: 110px;
}
.icon-comments {
position: absolute;
background: url("/assets/course14/post-challenge.png") 20px 0px;
right: 40px
}

.post-text {
display: block;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
margin: 0 10px 0 0;

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

Доброе утро!
Проверьте пожалуйста код CSS
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;
}

.post {
position: relative;
padding-left: 75px
}

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

.post-date {
position: absolute;
top: 0px;
margin: 0px;
line-height: 15px;
padding-top: 20px;
text-align: center;
height: 35px;
width: 55px;
left: 0px;
background: #ffffff;
border-bottom: 5px solid #bdc3c7;
font-weight: bold;
font-size: 15px;
}

.post-type {
position: absolute;
top: 70px;
left: 0px;
height: 55px;
width: 55px;
background: url("/assets/course14/quotes.png") #7f8c8d center no-repeat;
border-bottom: 5px solid #bdc3c7;
}

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

.post-stats {
position: relative;
padding: 5px 10px 0px 20px;
display: inline-block;

}

.icon-tags {
position: absolute;
background: url("/assets/course14/post-challenge.png") no-repeat;
left: 0px;
}

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

}

.icon-comments {
position: absolute;
background: url("/assets/course14/post-challenge.png") 20px 0px;
left: 0px
}

.post-text {
display: block;
background: #ffffff;
padding: 10px 15px;
border-bottom: 5px solid #bdc3c7;
margin: 0 10px 0 0;

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

Дважды написали абсолютное позиционирование, а могли написать один раз - для .icon. И координату тоже.

Понял, большое спасибо за помощь!