0

I use sly jquery plugin , this plugin sets the transform property for one element and then this element goes on top of all the other elements

I have one element that I want to be on top of this element

properties of the element that I want to be on top

CSS...

width: 235px;
height: 55px;
position: fixed;
z-index: 1900px;

and properties of the element that is on top (that's what I don't want)

transform: translateZ(0px) translateX(0px);
width: 1710px;height:100%;
4

1 回答 1

0

很难说正确的答案是什么。

无论如何,z-index 是一个抽象属性,并且只使用数字(不是像素)。

正确的语法是:

z-index: 1900;

顺便说一句,这对于 z-index 来说是一个非常高的值。您只需将其设置为高于其他值。

于 2013-07-21T16:27:53.107 回答