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