简体   繁体   English

黑色边框

[英]extra black border line

when you reduce the browser window u will see a different layout for iphone I see an extra black line below the slider... how to remove the black line.... i removed the border property but its not getting removed.... providing my code below.... 当您缩小浏览器窗口时,您会看到iPhone的不同布局,我在滑块下方看到一条额外的黑线...如何删除黑线....我删除了border属性,但没有被删除....在下面提供我的代码...。

http://jsfiddle.net/CAARt/1/ http://jsfiddle.net/CAARt/1/

#slider li div {
border-radius: 4px;
border-top: 1px #fff solid;
background: #F7F9FA;
-webkit-box-shadow: 0px 1px 2px #0D0F11;
-moz-box-shadow: 0px 1px 2px #0D0F11;
box-shadow: 0px 1px 2px #0D0F11;
color: #DDE1E4;
font-size: 12px;
text-align: center;
text-shadow: 0 1px 0 #fff;
color: #A4AEB7;
}

When the window size is reduced, the border that you are seeing is caused by this 减小窗口大小时,您看到的边框是由此引起的

#gallery nav {
border-top:1px solid #3A4146;
}

Change that border to 0px or none and it will go away. 将该边框更改为0px或不更改,它将消失。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM