itext中通过freemark生成的pdf时,居中样式text-align: center没有效果

itext不支持css3的语法,结果css2的部分语法也可能不支持,比如text-align: center,一直没有效果,后来想到用table的方式

原始的代码: css 的 container中添加 text-align: center;

<div class="container">

<span class="title">这边是要居中的内容</span>

<span class="spanimg"><img src="https://www.baidu.com/img/bdlogo.png " width="180px" height="80px"/></span>

</div>

修改成table后可以用

<table style="width: 100%;text-align: center;">

<tr>

<th width="30%"></th>

<th>这边是要居中的内容</th>

<th><img src="https://www.baidu.com/img/bdlogo.png " width="180px" height="80px"/></th>

</tr>

</table>

相关推荐
懂懂tty6 小时前
React状态更新流程
前端·react.js
小码哥_常6 小时前
告别繁琐!手把手教你封装超实用Android原生Adapter基类
前端
HoneyMoose7 小时前
Jenkins Cloudflare 部署提示错误
java·servlet·jenkins
阿丰资源7 小时前
基于SpringBoot的物流信息管理系统设计与实现(附资料)
java·spring boot·后端
skywalk81637 小时前
pytest测试的时候这是什么意思?Migrating <class ‘kotti.resources.File‘>
前端·python
Predestination王瀞潞7 小时前
Java EE3-我独自整合(第四章:Spring bean标签的常见配置)
java·spring·java-ee
overmind7 小时前
oeasy Python 121[专业选修]列表_多维列表运算_列表相加_列表相乘
java·windows·python
资深数据库专家7 小时前
总账EBS 应用服务器1 的监控分析
java·网络·数据库
房开民7 小时前
可变参数模板
java·开发语言·算法
一只蝉nahc7 小时前
vue使用iframe内嵌unity模型,并且向模型传递信息,接受信息
前端·vue.js·unity