18/18 93%. Есть два вопроса! Дата и блок"интенсив,программа"

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

body {
width: 320px;
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;
margin-top:0px;
margin-left:75px;
margin-right:25px;

}
.post .post-date {
display:inline-block;
position:absolute;
height:55px;
width:55px;
left:-75px;
top:0px;
font-weight:bold;
font-size:15px;
min-height:55px;
background: #ffffff;
font-size:15px;
text-align:center;
vertical-align:middle;
border-bottom:5px solid #bdc3c7;
}
.post .post-type{
display:inline-block;
position:absolute;
height:55px;
width:55px;
left:-75px;
top:70px;
background: #7f8c8d url(/assets/course14/quotes.png) no-repeat 50% 50%;
border-bottom:5px solid #bdc3c7;
}
.post .post-title {
color:#2980b9;
font-size:20px;
width:320px;
}
.post .post-author {
margin-top:5px;

}

.post .post-author a {
text-decoration:none;
color:#2980b9;
}
.post .post-stats {
display:inline-block;
}
.post-stats .icon, .post-stats a {
display:inline-block;
white-space: nowrap;
text-decoration:none;
font-size:11px;
color:#2980b9;
font-weight:bold;
}

.post-stats .icon-tags {
background: url(/assets/course14/post-challenge.png) no-repeat 0 0;
}
.post-stats .icon-comments{
margin-left:15px;
margin-right:5px;
background: url(/assets/course14/post-challenge.png) no-repeat -20px 0;
}

.post .post-text {
padding:10px 15px;
background:#ffffff;
width:175px;
border-bottom: 5px solid #bdc3c7;
}

ВОПРОСЫ:

  1. Почему я немогу дату переместить вертикально? vertical-align не работает…?
  2. блок “интенсив,программа” с картинками жутко прыгает… и не поддается форматированию… Что не так?

Отрицательных координат в коде быть не должно. Это я про ваши left: -75px;
Дата в этом задании выравнивается по вертикали с помощью line-height в пикселях.

1 вопрос - Спасибо за акцент.
2 вопрос - я переписал код применяя больше позиционирования. Что скажете?

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

body {
width: 320px;
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;
margin-top:0px;
margin-right:25px;

}
.post .post-date {
display:inline-block;
position:absolute;
height:55px;
width:55px;
left:0px;
top:0px;
font-weight:bold;
font-size:15px;
min-height:55px;
background: #ffffff;
font-size:15px;
text-align:center;
vertical-align:middle;
border-bottom:5px solid #bdc3c7;
line-height:55px;
}
.post .post-type{
display:inline-block;
position:absolute;
height:55px;
width:55px;
left:0px;
top:70px;
background: #7f8c8d url(/assets/course14/quotes.png) no-repeat 50% 50%;
border-bottom:5px solid #bdc3c7;
}
.post .post-title {
margin-left:75px;
color:#2980b9;
font-size:20px;
width:320px;
}
.post .post-author {
margin-left:75px;
margin-top:5px;
}
.post .post-author a {
text-decoration:none;
color:#2980b9;
}

.post-stats {
position: relative;
left:75px;
display: inline-block;
padding-left: 20px;
margin: 5px 10px 0 0;
}
.post-stats a {
text-decoration: none;
color: #2980b9;
}
.post-stats .icon {
position: absolute;
top: 0;
left: 0;
width: 15px;
height: 15px;
background: url("/assets/course14/post-challenge.png") no-repeat 0 0;
}
.post-stats .icon-comments{
background-position: -20px 0;
}

.post .post-text {

padding:10px 15px;

margin-left:75px;
background:#ffffff;
width:165px;
border-bottom: 5px solid #bdc3c7;
}

Много раз повторяется margin-left: 75px;
Вместо того, чтобы двигать каждый дочерний элемент блока .post, лучше отодвинуть всё содержимое блока, прописав внутренний отступ всего один раз.
Перепроверьте свойства блока .post-date. Вы уверены, что все это необходимо?

в таком случае я опять возвращаюсь к отрицательнім координатам :slight_smile:
.post .post-date, .post .post-type{
left:-75px;
}

если есть другой путь - подскажите, я не понимаю как иноче

Внутренний отступ надо для .post.

все, домучал… вокруг да около этого паддинга ходил )))