是否可以替代z-index? (我的pdf生成器库可能不支持`z-index`标签)

时间:2013-12-23 14:46:07

标签: html css xhtml2pdf

.line
{
    position:absolute;
    z-index:2
    top: 50px;
}
.otherclass
{
    position:absolute;
    z-index:1;
}

<div class="line">---</div>
<div class="otherclass"> my content </div>

为什么top属性不起作用?是否可以替代z-index? (我的pdf生成器库可能不支持z-index标签)

修改

我正在尝试从HTML生成PDF:

https://dpaste.de/2uZH

来自70行的

top无效。我该如何解决?

1 个答案:

答案 0 :(得分:0)

在旧的Netscape上有更老的方法可以做到这一点,但它们现在大部分已经消失了。我认为z-index就是这样。不知道你在做什么,但我要记住,html不是像pdf那样的页面格式化语言。这就是我们两者都有的原因。 html旨在暗示浏览器应该做什么。那么你可以将z-index块转换成div并让它们在其他内容的上方,下方或侧面流动吗?