Не могу понять, что за отступ и как его исправить.
Код:
article {
display: table;
margin: 10px;
width: 470px;
border-spacing: 15px;
border: 5px solid #686868;
background-image: url(“img/wood.png”);
}
ul {
display: table-row;
}
ul:first-child {
background-image: url(“img/wall-1.png”);
}
ul:last-child {
background-image: url(“img/wall-2.png”);
}
li {
display: table-cell;
border: 10px solid #686868;
height: 95px;
text-align: center;
vertical-align: middle;
}
li:first-child {
width: 110px;
}
li:nth-child(2) {
width: 90px;
}
li:last-child {
width: 150px;
}