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;
}
答案 0 :(得分:-1)
什么是“background-position:left -1062px;”在那里?看起来你混淆了2个不同的属性,这可能导致错误。
同样优良的做法是在css中放置引号,因为某些浏览器在没有它们的情况下会出现问题
background:url("../images/main-sprite.png") no-repeat 0 0;