表tr背景图像在webkit浏览器上不起作用

时间:2012-03-01 10:59:11

标签: css webkit

tr具有背景图像,除了 webkit浏览器之外,在所有浏览器中都显示完美 (谷歌Chrome和Apple Safari)。背景图片从每个th重复。

table > tbody > tr.fieldheader {
    background:url(../images/main-sprite.png) no-repeat 0 0;
    height:37px;
    width:900px;
    background-position:left -1062px;
    border-radius:none;
}

1 个答案:

答案 0 :(得分:-1)

什么是“background-position:left -1062px;”在那里?看起来你混淆了2个不同的属性,这可能导致错误。

同样优良的做法是在css中放置引号,因为某些浏览器在没有它们的情况下会出现问题

background:url("../images/main-sprite.png") no-repeat 0 0;