テーブルの右側に、列のサイズ変更に使用できる小さなハンドルが必要です。トリックを行うように見える比較的きれいなCSSとマークアップをいくつか持っています( fiddle ):
HTML:
<table>
<thead>
<tr>
<th>
<span class=resize> </span>
<div class=label>
Column 1
</div>
</th>
<th>
<span class=resize> </span>
<div class=label>
Column 2
</div>
</th>
</tr>
</thead>
</table>
CSS:
table thead th {
position: relative;
}
table thead th .resize {
width: 8px;
background-color: gray;
position: absolute;
right: 0px;
top: 0px;
bottom: 0px;
z-index: 1;
cursor: col-resize;
}
これは WebKit と IE 8 では問題なく動作するようですが、Firefox ではうまく機能しません。
これを Firefox でも機能させるにはどうすればよいですか?