Испытание: строим таблицу на CSS [10/18]

В целом совпадает с образцом, но проверку не проходит. В чем ошибка?

.formula {
display: table;
margin: 10px;
width: 500px;
border-collapse: collapse;

}

.formula p {
display: table-caption;
margin: 0;
padding: 10px;
font-size: 20px;
text-align: center;
caption-side: bottom;
}

.formula ul{
display: table-row;
}

.formula ul li {
display: table-cell;
padding: 5px 0;
text-align: center;
border: 1px solid #777;
}

.column-group {
display: table-column-group;
}

.column {
display: table-column;
width: 25%;
background: #b2fdd0;
}

.column-last {
background: #ffbaba;
}

header {
display: table-header-group;
}

header li {
background: #ffffff;
}

.content {
display: table-row-group;
}

.content-important li {
background: #fffebc;
}

Сделайте скрин с открытой вкладкой “Различия”, пожалуйста.

Попробуйте убрать ширину у .column

Проверку проходит, но результат 93%. Что можно улучшить?

.formula ul li {
display: table-cell;
padding: 5px;
text-align: center;
vertical-align: middle;
border: 1px solid #777;
}

ещё сделай ширину у .column 160px и будет 100%