使用 html2pdf 居中对齐,两边都有线条
<table style="width: 100%;">
<tr>
<td style="text-align: center;width=100%;"><h4>Education</h4></td>
</tr>
</table>
这是我正在使用的代码。现在我想要这样的o/p:
如何绘制这些水平线?
<table style="width: 100%;">
<tr>
<td style="text-align: center;width=100%;"><h4>Education</h4></td>
</tr>
</table>
This is the code I am using. Now i want o/p like this:
How can I draw these horizontal lines?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我粘贴 http://fiddle.jshell.net/4QskF/show/light/ 进入 html2pdf 主页上的“输入您选择的 URL”框,我在PDF 看起来像你的照片。
我使用了这个 HTML/CSS:
它可能需要一些调整,以便您可以在文档中实际使用它,但我认为这个想法是有效的。
If I paste http://fiddle.jshell.net/4QskF/show/light/ into the "enter a URL of your choice" box on the html2pdf homepage, I get output in the PDF which looks like your picture.
I used this HTML/CSS:
It might need some tweaks so you can actually use it in your document, but I think the idea works.
这解决了我的问题。
This solved my problem.