Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • z-index in CSS

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 476
    Comment on it

    Z-index Definition:-

    z-index property specifies stack order of any element or it only works for the positioning of an element i.e when position is absolute, relative and fixed.The vale of Z-index mostly used -1, 0 ,1 -1 is used for the positioning of element at background of any text and image while 0 or 1 take foreground position of the text/image.

    It determines the stack level of an HTML code. The stack level refers to the element position on z axis. Higher the vale of z-index the element will be more closer to the top of the stacking order.

    Using z-index for a text and image:

    1. image{
    2. position: absolute;
    3. left: 0px;
    4. top: 0px;
    5. z-index: -1;
    6. }
    7. image1{
    8. position: absolute;
    9. left: 40px;
    10. top: 0px;
    11. z-index: 0;
    12. }
    13. image2{
    14. position: absolute;
    15. right: 20px;
    16. bottom: 0px;
    17. z-index: 1;
    18. }

    You can understand from above code that how z-index is working on different values, when the value is -1 the element will be more closer to the top of stacking order. when the value of z-index 0 or 1 it will shown on foreground position.

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: