好的,所以我一直在这个网站上工作,我试图将它转换为wordpress主题。我不能为我的生活弄清楚为什么这个渐变似乎适用于这个网站上较长的页面。 http://codykrauskopf.com/performers.html然后在此网站http://codykrauskopf.com/?page_id=4上,渐变不会一直向下到页脚。
答案 0 :(得分:0)
因为你把之前放在了错误的元素上。
将css规则更改为:
#content:before {
content: '';
top: 0;
left: 0;
position: absolute;
height: 100%;
width: 100%;
//rest of your css is ok
}
答案 1 :(得分:0)
在style.css
中将position: absolute
更改为position: fixed
。