-
25 Nov 2012 10:03 PM #1
Answered: Z-Index?
Answered: Z-Index?
What exactly is the usage of z-index of a component?
-
Best Answer Posted by Schildi
Hi Dbms,
z-index refers to CSS and is actually no Sencha-specific property.
It specifies the order of elements, when they're positioned above each other.
In this example only element A would be visible, because it covers the other two element because its z-index is greatest.Code:<div style="z-index: 7">element B</div> <div style="z-index: 9">element A</div> <div style="z-index: 8">element C</div>
Best regards,
Schildi
-
26 Nov 2012 2:23 AM #2
Hi Dbms,
z-index refers to CSS and is actually no Sencha-specific property.
It specifies the order of elements, when they're positioned above each other.
In this example only element A would be visible, because it covers the other two element because its z-index is greatest.Code:<div style="z-index: 7">element B</div> <div style="z-index: 9">element A</div> <div style="z-index: 8">element C</div>
Best regards,
Schildi
-
26 Nov 2012 4:09 AM #3
Thanks, I had some idea, needed a confirmation. So Thanks..



Reply With Quote