JSFiddle - React, Tailwind, and code Playground
by SparrwHawk
JavaScript
/* ===== Internet Explorer ===== */
if (jQuery.browser.msie && jQuery.browser.version == '7.0') {
$(function() {
var zIndexNumber = 1000;
$('div').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 10;
});
});
}