Испытание: ещё одна CSS-таблица (обрезается картинка).

В окне “Результат” снизу обрезается картинка. Помогите пройти на 100%. Вот мой код:

html, body {
height: 100%;
}
article {
width: 470px;
display: inline-table;
border: 5px solid #686868;
background: url(img/wood.png);
height: 100%;
border-spacing: 15px;
margin: 10px 0 0 10px;
}
ul {
display: table-row;
}
li {
display: table-cell;
border: 10px solid #686868;
vertical-align: middle;
text-align: center;
padding-top: 18px;
padding-bottom: 17px;
}
ul:first-child li {
background: url(img/wall-1.png);
}
ul:last-child li {
background: url(img/wall-2.png);
}
li:nth-child(1) {
width: 110px;
}
li:nth-child(3) {
width: 150px;
}

Могли добить сами:
article {
width: 470px;
display: inline-table;
border: 5px solid #686868;
background: url(img/wood.png);
/height: 100%;/
border-spacing: 15px;
margin: 10px;
}
ul {
display: table-row;
}
li {
display: table-cell;
border: 10px solid #686868;
vertical-align: middle;
text-align: center;
/padding-top: 18px;
padding-bottom: 17px;
/
padding: 20px;
}
ul:first-child li {
background: url(img/wall-1.png);
}
ul:last-child li {
background: url(img/wall-2.png);
}
li:nth-child(2) {
width: 50px;
}
li:nth-child(3) {
width: 110px;
}

1 лайк

Спасибо)