Я не знаю, что тут неправильно, вроде все сделал, а проверка выдает 89%
HTML:
Итоговая таблица
<table>
<tr>
<th style="text-align:left; background-color: darkcyan;" class="left">Город</th>
<th style="background-color: lightblue;" class="center">Посещений</th>
<th style="background-color: darkcyan;" class="right">%</th>
</tr>
<tr>
<td class="left">СПб</td>
<td class="center">199</td>
<td class="right">65.12</td>
</tr>
<tr class="yellow">
<td class="left">Москва</td>
<td class="center">69</td>
<td class="right">21.3</td>
</tr>
<tr>
<td class="left">Киев</td>
<td class="center">5</td>
<td class="right">8</td>
</tr>
<tr class="yellow">
<td colspan="2" class="left">Посещений за весь период</td>
<td class="right">273</td>
</tr>
</table>
CSS:
body {
width: 350px;
margin: 0;
padding: 0 10px;
font-size: 14px;
font-family: “Arial”, sans-serif;
}
td{
width: 33%;
border-bottom: 1px solid lightgray;
padding: 10px;
color: black;
}
th{
width: 33%;
border-top: 2px solid black;
border-bottom: 2px solid black;
padding: 10px;
color: white;
}
table{
border-collapse: collapse;
}
.center{
text-align: center;
}
.right{
text-align: right;
}
.yellow{
background-color: lightyellow;
}
.left{
text-align: left;
}