【发布时间】:2012-01-09 07:03:54
【问题描述】:
这个bug已经在here讨论过了,但是我还没有找到解决办法。
在我的背景图片的顶部和底部有一些看起来是背景颜色的小线条。背景图像高度和容器高度相同(29px),并且图像不是透明的,而是带有白色背景。容器上根本没有边框,所以这让我有点难过。这在 Mac 上的 Safari 中看起来不错,但在 iPad 上显示上述问题。
html:
<a class="help" href="#">Help</a>
css:
.help {
color: #fff;
display: block;
float: left;
font-size: 12px;
font-weight: bold;
background-image: url(../img/help.png);
background-repeat: no-repeat;
background-color: #ee3224;
height: 29px;
line-height: 29px;
padding: 0 10px 0 26px;
text-transform: uppercase;
position: absolute;
left: 0;
top: 0;
}
【问题讨论】: