[18,18] помогите с title.не хватает ширины поля для текста

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 {
padding-left: 75px;
position: relative;
}

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

Ваш код дает 100%. У вас проблема с отображением в мини-браузере?

Да, у меня текст переносится на новую строку

Не обращайте внимания, ориентируйтесь на вкладку “Результат”.

Можно вставить вопрос? :slight_smile:

Как, на Ваш взгляд, правильнее записать?

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

.icon-tags {
background-position: 0 0;
}

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

Или все же так, как реализовано в этой части у автора вопроса?

Ваш вариант правильный. Картинка спрайта должна загружаться один раз.

Спасибо!