将背景图像放在表格单元格的中间

时间:2013-05-03 19:38:21

标签: html css html-table

请看下面的图片

enter image description here

如何将图像置于表格列(<td>)中心?填充不会在顶部仅在右侧和底部留出空间

这是表格html代码

<table>
<tbody>
<tr>
<td class="bedButton ward-A">A115:1</td>
<td class="bedButton ward-A">A116:1</td>
</tr>
</tbody>
</table>

这是CSS:

.bedButton{
    padding:25px;
    width:250px;
    height:300px;
    background:url(../images/bedview/bed-background.png) no-repeat;
    margin-left: auto;
    margin-right: auto
}

1 个答案:

答案 0 :(得分:-1)

要水平居中文字,请使用:

td {
    text-align:center;
}

<强> jsFiddle example