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.
Determi
Any solution for this scenario.Below link demonstrates the problem exactly. The example not created by me Nathan Williams.
<div style="width: 500px; height: 500px; overflow: auto;">
<div style="width: 500px; height: 10000000px; overflow: hidden; position: relative;">
<span style="left: 0px; top: 0px; position: absolute;">top</span>
<span style="left: 0px; top: 1193030px; position: absolute;">IE8 limit (approximate)</span>
<span style="left: 0px; top: 1533900px; position: absolute;">IE10 limit (approximate)</span>
<span style="left: 0px; top: 9999950px; position: absolute;">bottom</span>
</div>
</div>
http://jsfiddle.net/Bckbr/