单图像作为tr背景

时间:2015-04-08 08:15:57

标签: html css

我要做的是为完整的表格行设置单个图像(行包含多个单元格), 如果在该行中有多个单元格,如何为表格行设置单个图像,我无法设置单个图像,当我设置tr背景图像时,每个单元格中都有单独的图像,请在css,javascript或jquery中建议

1 个答案:

答案 0 :(得分:0)

对于在行上合并的X单元格上的背景图像,请使用:

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

将X替换为要合并的列数 用你的pic的相对路径替换untitled.png

colspan允许水平合并单元格 如果要垂直合并,请使用rowspan