<p>Для таблиці задана властивість <b>empty-cells: hide;</b></p>
<table>
<tr>
<th>Заголовок</th>
<th>Заголовок</th>
<th>Заголовок</th>
</tr>
<tr>
<td>Клітинка</td>
<td>Клітинка</td>
<td></td>
</tr>
<tr>
<td>Клітинка</td>
<td></td>
<td>Клітинка</td>
</tr>
</table>
<br>
<p>Для таблиці задана властивість <b>empty-cells: show;</b></p>
<table class="show">
<tr>
<th>Заголовок</th>
<th>Заголовок</th>
<th>Заголовок</th>
</tr>
<tr>
<td>Клітинка</td>
<td>Клітинка</td>
<td></td>
</tr>
<tr>
<td>Клітинка</td>
<td></td>
<td>Клітинка</td>
</tr>
</table>
table {
border: 1px solid #666;
width: 100%;
empty-cells: hide;
}
.show{
empty-cells: show;
}
td, th {
border: 1px solid #666;
padding: 16px;
text-align: center;
}
p{
text-align: center;
font-size: 20px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.