如何去掉CSS中的左边距和上边距?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我怀疑边距是由 html2pdf 生成的,而不是由 html/css 生成的。您是否尝试过在 html2pdf-constructor< 中设置边距/a>?
例如,将
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: