本文介绍了如何在iText 7中添加外部CSS文件已定义的HTML的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在从外部服务获取HTML.

I'm getting my html from an external service.

我想向其中添加CSS文件.

I want to add a CSS file to it.

我没有找到有关如何设置HTML中未定义的外部CSS并让convertToPdf应用这些样式的任何信息.

I haven't found any information about how can I set an external CSS that is not defined in the HTML and have convertToPdf apply these styles.

类似于iText5的CSSResolver.

Something like CSSResolver of iText5.

推荐答案

您需要将其链接到html文件的开头部分添加:link rel ="stylesheet" type ="text/css" href ="PATHTOCSSHERE">. < ----:别忘了将路径放在css文件中

you need to link it in head section of your html fileadd: link rel="stylesheet" type="text/css" href="PATHTOCSSHERE"> . <----:dont forget to put the path to the css file

这篇关于如何在iText 7中添加外部CSS文件已定义的HTML的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 02:39