Skip to main content

CSS: Fix z-index in ie

28th October, 2022

Updated: 28th October, 2022

    $(function() {
          var zIndexNumber = 1000;
          // Put your target element(s) in the selector below!
          $("div").each(function() {
                  $(this).css('zIndex', zIndexNumber);
                  zIndexNumber -= 10;
          });});

    4afb2b57-d80b-4ffc-939b-39f87379b523

    Created on: 28th October, 2022

    Last updated: 28th October, 2022

    Source: source

    Tagged With: