如何去掉CSS中的左边距和上边距?

发布于 2024-12-25 23:20:58 字数 377 浏览 1 评论 0原文

我正在使用 html2pdf,我想使用 css 去掉顶部和左边距,但我不能。 在输出缓冲边距设置为 0 之前,它适用于 html,但是当我使用 html2pdf 将其转换为 pdf 时上边距和左边距再次出现。

这是我当前的CSS。

body {
    margin: 0;
    padding: 0;
}

#box {
    margin: 0;
    padding: 0;
    width: 803px;
    height: 1400px;
    border: 1px solid #000;
}

请帮忙。

I'm using html2pdf and I want to get rid of the top and left margins using css but I can't.
Before output buffering margin is already set to 0, it works on html but when I convert it to pdf using html2pdf the top and left margins appears again.

Here's my current css.

body {
    margin: 0;
    padding: 0;
}

#box {
    margin: 0;
    padding: 0;
    width: 803px;
    height: 1400px;
    border: 1px solid #000;
}

Please help.

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

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

发布评论

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

评论(1

沫雨熙 2025-01-01 23:20:58

我怀疑边距是由 html2pdf 生成的,而不是由 html/css 生成的。您是否尝试过在 html2pdf-constructor< 中设置边距/a>?
例如,将 array(0, 0, 0, 0) 作为最后一个参数:

$html2pdf = new HTML2PDF('P', 'A4', 'en', true, 'UTF-8', array(0, 0, 0, 0));

I suspect that the margins are generated by html2pdf, not from the html/css. Have you tried to set the margins in the html2pdf-constructor?
E.g. with array(0, 0, 0, 0) as last parameter:

$html2pdf = new HTML2PDF('P', 'A4', 'en', true, 'UTF-8', array(0, 0, 0, 0));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文