I\'m having some issues with absolute positioning inside a table cell in Internet Explorer (9 specifically, but I\'m sure the issue exists in <9 as well). I\'m trying to
I recommend you instead of positioning your element to all directions, use only two of them and instead, use size for your div.
like:
div { position: absolute; top:0; bottom:0; width: 100%; height: 100% } td { position: relative; width: 400px; height: 400px; }