Firefox支持表元素上的position:relative吗?

当我尝试在或Firefox中使用position: relative/时position:

absolute,它似乎不起作用。<th>``<td>

回答:

最简单,最合适的方法是将单元格的内容包装在div中,并添加相对于该div的position:。

例:

<td>

<div style="position:relative">

This will be positioned normally

<div style="position:absolute; top:5px; left:5px;">

This will be positioned at 5,5 relative to the cell

</div>

</div>

</td>

以上是 Firefox支持表元素上的position:relative吗? 的全部内容, 来源链接: utcz.com/qa/405665.html

回到顶部