XSL ドキュメントを使用して PDF を作成しています。インラインとして定義されているスタイルがいくつかあります。それらを外部CSSファイルに移動したいのですが、行き止まりです。
これが私のコードです:
<fo:table border-bottom="solid 2pt #409C94" border-top="solid 2pt #409C94" margin-bottom=".1in" background-color="#E9E9E9" text-align="center" table-layout="fixed" width="100%" font-size="9pt">
<fo:table-column column-width="proportional-column-width(100)"/>
<fo:table-body width="100%" table-layout="fixed">
<fo:table-row>
<fo:table-cell text-align="center" padding-top=".5mm" padding-bottom=".5mm">
<fo:block>Some text is placed here.</fo:block>
</fo:table-cell>
</fo:table-row>
</fo:table-body>
</fo:table>
このドキュメントから削除したいのは、すべてのスタイリング タグです。
border-bottom="solid 2pt #409C94"
border-top="solid 2pt #409C94"
margin-bottom=".1in"
background-color="#E9E9E9"
text-align="center"
table-layout="fixed"
width="100%" font-size="9pt"
それらをCSSファイルに移動することを考えていますが、より良い方法があれば歓迎します.
ありがとう。