使用精灵与Weasyprint

时间:2014-07-01 12:51:29

标签: html css pdf sprite weasyprint

我尝试使用weasyprint从php / html脚本创建.pdf文件。

在浏览器中打开脚本时,一切都很顺利。但是当我使用weasyprint生成.pdf并打开它时,我的精灵不会按原样渲染。

示例:
normal
成为
weasyprint

以下是应用于<span>以显示精灵的属性示例:

.spr0 {
    background-image: url(/images/sprite_0.png);
    background-repeat: no-repeat;
    display: inline-block;
    overflow: hidden;
    text-align: center;
}
.spr_star5 {
    background-position: 0px 0px;
    width: 80px;
    height: 14px;
}

是否有一些weasyprint不接受的属性,这就是为什么我的精灵没有很好地展示?

0 个答案:

没有答案