HTML表格单元格背景图像对齐

时间:2013-01-10 05:28:03

标签: html css

我需要将表格单元格的背景图像对齐为

  

垂直方向顶部 - 右侧水平

但它显示为,

  

垂直中心;在水平右侧

请看这个页面:http://www.chemfluence.org.in/monetarist/index_copy.php

这是我的代码,

<td width="178" rowspan="3" valign="top" 
align="right" background="images/left.jpg" 
style="background-repeat:no-repeat;background-position:right;">
</td>

如果我使用 background-position:Top; 它是水平居中对齐的 请告诉我哪些应该更正。

2 个答案:

答案 0 :(得分:11)

像这样使用你的内联css

<td width="178" rowspan="3" valign="top" 
align="right" background="images/left.jpg" 
style="background-repeat:background-position: right top;">
</td>

答案 1 :(得分:6)

这适用于IE9(兼容性视图和普通模式),Firefox 17和Chrome 23:

<table>
    <tr>
        <td style="background-image:url(untitled.png); background-position:right 0px; background-repeat:no-repeat;">
            Hello World
        </td>
    </tr>
</table>