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>

相关推荐
讓丄帝愛伱几秒前
excel导出实例
java·python·excel
温轻舟4 分钟前
禁毒路上,任重道远 | HTML页面
开发语言·前端·javascript·css·html·温轻舟
p***q7819 分钟前
SpringBoot实战:高效实现API限流策略
java·spring boot·后端
likuolei23 分钟前
XSL-FO 列表
前端·数据库
shaohaoyongchuang24 分钟前
vue_03路由
前端·javascript·vue.js
3***161028 分钟前
【JavaEE】Spring Boot 项目创建
java·spring boot·java-ee
我叫张小白。31 分钟前
Vue3计算属性:高效数据处理
前端·javascript·vue.js·前端框架·vue
6***v41731 分钟前
VScode 开发 Springboot 程序
java·spring boot·后端
t***316535 分钟前
SpringBoot中自定义Starter
java·spring boot·后端
橘子编程38 分钟前
经典排序算法全解析
java·算法·排序算法