この例http://jsfiddle.net/bYAK4/では、セルを非表示にすると列全体が移動するのはなぜですか?これを回避するにはどうすればよいですか?
HTML
<table>
<tr>
<td>John</td>
<td>Doe</td>
</tr>
<tr>
<td>Hello</td>
<td><div class="hide">World</div></td>
</tr>
</table>
CSS
table {
width:400px;
}
JS
$(document).ready(function() {
$('.hide').slideUp();
});