我网站上的垂直线CSS +滚动

时间:2014-02-23 15:52:22

标签: jquery css google-chrome safari line

我遇到了在Windows操作系统下在其他浏览器中查看我的网站的问题。站点右侧出现一条垂直线(标有箭头)。我认为这是一个滚动条,但我错了。我的MacBook显示它很好,而13英寸的东芝错了。同样的问题是15英寸的计算机。这是我的div的css代码。

另一个问题是使用mozilla时出现滚动条 - 看起来很丑,但是当使用“overflow:hidden”属性时,它会禁用滚动。知道如何解决那些恼人的问题吗?

.container { 
 z-index: 1;
 position: relative; 
 background-color: #0099cc; 
 padding-top: 120px; 
 text-align: center; 
 white-space: nowrap; 
 text-shadow: 0px 1px 1px #888; 
 height: 100%; 
 min-width: 1280px; 
 min-height: 800px; 
 overflow: scroll; 
 }

图片链接: ugly line on the right

网站: site with the issue

1 个答案:

答案 0 :(得分:0)

这些“丑陋”行只是非活动滚动条,您可以通过在div上创建overflow:visible;来删除它们。但我不知道这是否会以其他方式影响您的网站。