我的网站中间有一张桌子:www.care.dti.dk
包围div的表格的第一个<tr>
:#pricingTable
的高度为5px。
在localhost上工作正常,但是当我把它放到网上时,浏览器会自动将高度调整为15px,这会使背景图像重复。
我已经尝试过设置background-repeat: no-repeat;
,但这并没有将图像放在按钮中,我希望它在那里。
是什么导致了这个问题,我该如何解决?
答案 0 :(得分:0)
使用这个CSS:
#pricingTable table tr:first-child td {
font-size:0;
height:5px;
}
并删除height="5px"
td
现在你写<td height="5px">
这是不正确的如果你在td
中写高度
比<td height="5">
此
答案 1 :(得分:0)
删除
<td>
或
添加另一个CSS attr:line-height: 5px