出于某种原因,我在桌子上得到1px填充或边框。我无法弄清楚如何摆脱它。我已经尝试将display:block;margin:0;padding:0;
添加到图片中,但这并没有解决它。我还在CSS中尝试了<table border="0">
和border:none;
。对于我的生活,我无法弄清楚这一点。
这是一个问题的原因是因为我试图让图像与tr两边的边缘对齐,给它圆形边框,因为CSS3 border-radius不适用于TR。我已经将table, table * {border:1px solid red;}
添加到了CSS中,从中看起来它看起来像填充或边距问题。
问题出在这张图片中:
在左侧和右侧,您可以看到图像和桌子边缘之间存在某种填充或某种东西。红色边框只是为了看到这一点。
这是我的CSS:
table a {
color: #f7941E;
font-family: Arial;
font-size: 16px;
font-weight: bold;
/* css3 */
transition: color .25s;
-khtml-transition: color .25s;
-moz-transition: color .25s;
-o-transition: color .25s;
-webkit-transition: color .25s;
}
table a:hover {
color: #f8ae57;
}
table {
width: 610px;
}
table tr {
height: 33px;
padding: 0;
margin: 0;
vertical-align: middle;
}
table td {
border-collapse: collapse;
}
table tr.head {
color: #58585a;
font-family: Rockwell, serif;
font-size: 18px;
font-weight: bold;
text-transform: lowercase;
}
table tr.even {
background: #EEE;
height: 33px;
}
table tr td img {
padding: 0 15px 0 13px;
vertical-align: middle;
}
table tr td a img {
opacity: .6;
/* css3 */
transition: opacity .25s;
-khtml-transition: opacity .25s;
-moz-transition: opacity .25s;
-o-transition: opacity .25s;
-webkit-transition: opacity .25s;
}
table tr td a img:hover {
opacity: 1;
}
HTML:
<table border="0">
<tr>
<td><img src="images/tr-left.png" style="display:block;margin:0;padding:0;">
<td><img src="images/some-icon.png" /> <a href="#">Some Content</a></td>
<td><img src="images/tr-right.png" style="display:block;margin:0;padding:0;">
</td>
</table>
答案 0 :(得分:19)
尝试:<table border="0" cellpadding="0" cellspacing="0">
答案 1 :(得分:11)
这似乎解决了我的问题。
<强> CSS:强>
table {
width: 610px;
border-spacing:0; /* Add this here */
}
答案 2 :(得分:1)
我的问题是一些奇怪的行为,我曾尝试过书中的所有技巧,但填充很顽固。最后我发现,为 line-height
元素设置的 body
属性正在创建padding-top
的效果。用本地化规则覆盖哪个
line-height: normal;
......问题解决了。