作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想要一个用于广告的顶部“托盘”。它可以使用 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;
}
我希望所有这些都有意义。
最佳答案
使用 reset.css 规范化所有样式,阅读此处可用的重置 CSS 之一:http://meyerweb.com/eric/tools/css/reset/ .
另一种快速的方法是将 body 上的边距设置为零,例如。 body {margin: 0}
但推荐的方法是使用 reset.css。
关于html - 建仓 :static (or :relative) element span the width of the page,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23704684/
我是一名优秀的程序员,十分优秀!