如下图所示,当我在iPad上浏览网站时,会有一些黑色边框。您知道为什么以及如何阅读它吗?
非常感谢,
.banner2 {
position: absolute;
top: 40px;
left: 40px;
display: inline;
padding: 20px;
background: #fff;
color: #2165CB;
font-weight: 400;
}
.banner3 {
position: absolute;
top: 110px;
left: 80px;
display: inline;
padding-top: 5px;
padding-right: 20px;
padding-bottom: 5px;
padding-left: 20px;
background: #2690CD;
color: #fff;
}
最佳答案
我认为它们是图像,因此您可以使用:
.banner2 img, .banner3 img{
border: 0;
}
如果它们不是图像,则只需将
border: 0;
添加到.banner2
和.banner3
的CSS样式中。关于html - iPad上意外的DIV边框线,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/19213214/