我對你們有挑戰。我試圖創建一個帶有SVG圖像的頁腳的xhtml文檔,然後將其呈現爲pdf。 我使用飛碟和蠟染的組合來做到這一點。現在我瞭解到飛碟支持運行腳註,例如飛碟蠟染和運行頁腳不一起工作?
@page {
@top { content: element(footer); }
}
footer { position: running(footer); }
這對我來說工作正常,但是當我加入SVG圖像有蠟染的問題出現了:
<html>
<head>
<style type="text/css">
.footer { position: running(footer); }
@page { @bottom-center { content: element(footer) } }
.header__logo {display: block; right: 0; top: 0; width: 150px; height: 54px; }
</style>
</head>
<body>
<div class="footer">
<img class='header__logo' src='someSRC.svg' />
footer
</div>
<div class="content"> stuff </div>
</body>
它看起來像蠟染呈現圖像之前它被移到頁面底部。此外,它不會在任何地方顯示「頁腳」字樣。 任何人都知道如何解決這個問題?也許強迫蠟染以後渲染什麼的? 我試圖設置內部圖像的位置相對和更多,但它似乎真的搞砸了過程。