visible
div要素、表の行を表示
要素1
要素2
要素3
1 | table | table | table |
---|---|---|---|
2 | table | table | table |
3 | table | table | table |
<span>要素1</span>
<span class="item">要素2</span>
<span>要素3</span>
<table>
<tbody>
<tr>
<th>1</th>
<td>table</td>
<td>table</td>
<td>table</td>
</tr>
<tr class="item">
<th>2</th>
<td>table</td>
<td>table</td>
<td>table</td>
</tr>
<tr>
<th>3</th>
<td>table</td>
<td>table</td>
<td>table</td>
</tr>
</tbody>
</table>
.item{
background-color: #bbe7f9;
visibility: visible;
}
hidden
div要素、表の行領域は確保し非表示
要素1
要素3
1 | table | table | table |
---|---|---|---|
3 | table | table | table |
.item{
visibility: hidden;
}
collapse
div要素の領域は確保、表の行は詰めて非表示
要素1
要素2
要素3
1 | table | table | table |
---|---|---|---|
2 | table | table | table |
3 | table | table | table |
.item{
visibility: collapse;
}