I need to make a really big div, in order of millions of pixels.
Searching I found this thread that proves that IE can manage up to 10.000.000 of px.
Determine Maximum Possible DIV Height
But in my test IE 10 can't size a div more than 1.533.917 px.
This is my test: jsfiddle test
The value between brackets is the size that I try to set and the previous value is the computed size of the div calculated with jquery.
The question is: Why IE can't size a div more than 1.533.917 px in my test?
This is the js that makes the div bigger:
$(document).ready(function () {
var interval = setInterval(function () {
height += 10000;
width += 10000;
$(".sujeto").css({width: width, height: height});
$(".contador").text( "Width: " + ( $(".sujeto").width() ) + "px (" + width + ") - Height: " + ( $(".sujeto").height() ) + "px (" + height + ")");
}, 100);
});