I\'m developing a Windows Phone app using PhoneGap/Cordova (though, I believe the problem I\'m having makes the fact that it\'s PhoneGap irrelevant). No matter what I seem t
The overflow is a weird IE10 WebBrowser control thing. If you change the background color of the body you will see that both above and below your div are the background color.
Here is a simple workaround:
document.addEventListener("DOMContentLoaded", function () {
var div = document.querySelector(".navbar_table_container");
div.style.top = (div.offsetTop + div.offsetHeight + 4) + "px";
});