我想要一个广告的顶级“托盘”。它可以使用javascript脚本滑出页面边框。它下面的“分隔符”保持关闭图标,并且主要是装饰性的,因为当页面滚动经过一个点时它会被修复。 (这是为了防止浏览器的主题搞砸了页面设计)。
我的问题是在分隔符通过javascript获取position:fixed
之前,它需要是position:relative
或position:static
,因为绝对定位会将其从页面流中取出。当我将其设置为position:static
和width:100%
时,会有一个边距显示背景图像。我希望它覆盖整个页面顶部。我已经搜索了一个解决方案,但我找不到任何关于如何删除此边框的内容。使用jsfiddle更容易解释:在顶部有一个带有红色边框的部分,当您向下滚动时,正下方有一个分隔符固定到页面。我无法弄清楚如何让红色边框和分隔线(在它固定之前)跨越页面的宽度。
以下是HTML中令人讨厌的内容:
<div class = "adTray">
<div class = "ad"></div>
<div class = "ad"></div>
</div>
<div class="topBorder"></div>
CSS:
.adTray{
border: 1px solid red;
height:100px;
width:100%;
}
#topBorderScrolled{
position:fixed;
z-index:100;
}
.topBorder{
right:0;
left:0;
top:0;
background: rgb(68,68,68); /* Old browsers */
background: -moz-linear-gradient(top, rgba(68,68,68,1) 0%, rgba(51,51,51,1) 50%, rgba(38,38,38,1) 50%, rgba(20,20,20,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(68,68,68,1)), color-stop(50%,rgba(51,51,51,1)), color-stop(50%,rgba(38,38,38,1)), color-stop(100%,rgba(20,20,20,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(51,51,51,1) 50%,rgba(38,38,38,1) 50%,rgba(20,20,20,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(51,51,51,1) 50%,rgba(38,38,38,1) 50%,rgba(20,20,20,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(68,68,68,1) 0%,rgba(51,51,51,1) 50%,rgba(38,38,38,1) 50%,rgba(20,20,20,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(68,68,68,1) 0%,rgba(51,51,51,1) 50%,rgba(38,38,38,1) 50%,rgba(20,20,20,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#444444', endColorstr='#141414',GradientType=0 ); /* IE6-9 */
width:100%;
height:15px;
border:1px solid #111111;
}
我希望所有这些都是有道理的。
答案 0 :(得分:0)
使用reset.css标准化所有样式,请阅读此处提供的重置CSS之一:http://meyerweb.com/eric/tools/css/reset/。
另一种快速方法是将身体上的边距设置为零,例如。 body {margin: 0}
但建议的方法是使用reset.css。