我有一个应该包含图像的表。在显示图像时,我希望控制按钮出现在表格单元格的顶部。
<table id="pridat_fotky">
<tbody>
<tr>
<td class="empty">
<button>X</button>
</td>
</tr>
</tbody>
</table>
所以,我尝试给表格单元格一个position:relative
和position:absolute
按钮:
table#pridat_fotky td {
position: relative;
}
/**THE BUTTON**/
table td button {
position: absolute;
top: 0px; /*0 means as hight as possible within the cell???*/
left: 50%; /**MIDDLE ALIGMENT???*/
}
不幸的是,通过这种设置,按钮将自身与窗口顶部对齐。这是一个fiddle, Button 是一个红色的小方块。