将边距应用到正在运行的 CSS 位置

发布于 2024-12-01 11:52:26 字数 311 浏览 2 评论 0原文

我使用以下 CSS 代码将页脚放置在页面底部:

<style type="text/css">
    @page {
        @bottom-center { content: element(footer); }
    }
    #footer {position: running(footer);}
</style>

有没有办法将其显示得稍高一些?添加 margin-bottom: 50px 似乎没有效果。

更新:页面将使用 iText 转换为 PDF

I'm using the following CSS code to position my footer at the bottom of the page:

<style type="text/css">
    @page {
        @bottom-center { content: element(footer); }
    }
    #footer {position: running(footer);}
</style>

Is there a way to display it slightly higher? Adding margin-bottom: 50px doesn't seem to have an effect.

update: the page will be converted to PDF using iText

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

筱武穆 2024-12-08 11:52:26

我终于设法让它与以下CSS一起工作:

    <style type="text/css">
      @page { 
          margin-bottom: 100px;
          @bottom-center { 
            content:element(footer);
          }
      }

    #footer {
      position: running(footer);
    }
</style>

以前,我只尝试将margin-bottom添加到@bottom-center和#footer。

I finally managed to get it working with the following CSS:

    <style type="text/css">
      @page { 
          margin-bottom: 100px;
          @bottom-center { 
            content:element(footer);
          }
      }

    #footer {
      position: running(footer);
    }
</style>

Previously, I only tried to add margin-bottom to the @bottom-center and #footer.

黯淡〆 2024-12-08 11:52:26

为此,您通常使用:

#footer {
  position: absolute;
  bottom: 50px;
}

jsFiddle 示例

To achieve that, you usually use:

#footer {
  position: absolute;
  bottom: 50px;
}

jsFiddle example

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文