代码之家  ›  专栏  ›  技术社区  ›  Cody Krauskopf

内容和页脚之间的渐变间距

  •  0
  • Cody Krauskopf  · 技术社区  · 11 年前

    好的,所以我一直在这个网站上工作,我正在尝试将其转换为wordpress主题。我一辈子都无法弄明白为什么这个梯度似乎在这个网站上的较长页面上起作用。 http://codykrauskopf.com/performers.html 然后在这个网站上 http://codykrauskopf.com/?page_id=4 渐变不会一直向下到页脚。

    2 回复  |  直到 11 年前
        1
  •  0
  •   Bodzio    11 年前

    在里面 style.css 改变 position: absolute position: fixed .

        2
  •  0
  •   Omer Bonfil    11 年前

    因为你把前面放在了错误的元素上。

    将css规则更改为:

    #content:before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    //rest of your css is ok
    }