html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 300px;
font-family: “Arial”, sans-serif;
font-size: 12px;
}
.gallery {
padding-top: 10px;
}
.gallery .item {
width: 125px;
margin-bottom: 10px;
display:inline-block;
margin-left:18px;
margin-right: -1px;
vertical-align:center;
}
}
.gallery .title {
margin-bottom: 0;
line-height: 14px;
}
.gallery .frame {
border: 1px solid #000;
background: #ecf0f1;
margin-top:5px;
}
.gallery .image {
border-bottom: 1px solid #000;
border-top: 1px solid #000;
height: 70px;
background-position: 50% 50%;
background-repeat: no-repeat;
margin-top:10px;
}
.gallery .image-1 {
background-color: #2ecc71;
background-image: url("/assets/course13/cat_box.png");
}
.gallery .image-2 {
background-color: #3498db;
background-image: url("/assets/course13/cat_fish.png");
}
.gallery .image-3 {
background-color: #f1c40f;
background-image: url("/assets/course13/cat_purr.png");
}
.gallery .image-4 {
background-color: #e67e22;
background-image: url("/assets/course13/cat_walk.png");
}
.gallery .image-5 {
background-color: #e74c3c;
background-image: url("/assets/course13/cat_drunk.png");
}
.gallery .date {
font-style: italic;
font-size: 11px;
color: #666666;
padding:5px;
}
.gallery .item:nth-child(4) {
margin-left: 88px;
}
Я смотрю, вы тоже решили переписать чужие ошибки. Блочно-строчные элементы выравниваются по центру с помощью свойства text-align, прописанного для родителя, в данном случае для .gallery.
1 лайк
Вот так лучше?
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 300px;
font-family: “Arial”, sans-serif;
font-size: 12px;
}
.gallery {
padding-top: 10px;
text-align:center;
}
.gallery .item {
width: 125px;
margin: 0 10px;
margin-bottom: 10px;
display:inline-block;
}
.gallery .title {
margin-bottom: 5px;
line-height: 14px;
text-align:left;
border:none;
}
.gallery .frame {
background: #ecf0f1;
border:1px solid #000;
padding-top:10px;
}
.gallery .image {
border-top:1px solid #000;
border-bottom:1px solid #000;
height: 70px;
background-position: 50% 50%;
background-repeat: no-repeat;
}
.gallery .image-1 {
background-color: #2ecc71;
background-image: url("/assets/course13/cat_box.png");
}
.gallery .image-2 {
background-color: #3498db;
background-image: url("/assets/course13/cat_fish.png");
}
.gallery .image-3 {
background-color: #f1c40f;
background-image: url("/assets/course13/cat_purr.png");
}
.gallery .image-4 {
background-color: #e67e22;
background-image: url("/assets/course13/cat_walk.png");
}
.gallery .image-5 {
background-color: #e74c3c;
background-image: url("/assets/course13/cat_drunk.png");
}
.gallery .date {
font-style: italic;
font-size: 11px;
color: #666666;
padding:10px;
text-align:left;
}
Все равно не подходит. Что не так?
html,
body {
margin: 0;
padding: 0;
}
body {
width: 450px;
height: 300px;
font-family: “Arial”, sans-serif;
font-size: 12px;
}
.gallery {
padding-top: 10px;
text-align:center;
vertical-align: middle;
}
.gallery .item {
width: 125px;
margin-right:15px;
margin-left:5px;
margin-bottom: 10px;
display:inline-block;
}
.gallery .title {
margin-bottom: 5px;
line-height: 14px;
text-align:left;
border:none;
}
.gallery .frame {
background: #ecf0f1;
border:1px solid #000;
padding-top:10px;
}
.gallery .image {
border-top:1px solid #000;
border-bottom:1px solid #000;
height: 70px;
background-position: 50% 50%;
background-repeat: no-repeat;
}
.gallery .image-1 {
background-color: #2ecc71;
background-image: url("/assets/course13/cat_box.png");
}
.gallery .image-2 {
background-color: #3498db;
background-image: url("/assets/course13/cat_fish.png");
}
.gallery .image-3 {
background-color: #f1c40f;
background-image: url("/assets/course13/cat_purr.png");
}
.gallery .image-4 {
background-color: #e67e22;
background-image: url("/assets/course13/cat_walk.png");
}
.gallery .image-5 {
background-color: #e74c3c;
background-image: url("/assets/course13/cat_drunk.png");
}
.gallery .date {
font-style: italic;
font-size: 11px;
color: #666666;
padding:5px;
text-align:left;
}
На некоторые вопросы вы вполне можете самостоятельно найти ответы, тем более, если информация об этом в курсе была: https://htmlacademy.ru/courses/65/run/31