Dear All,
We have got 3 divs as below. What we would like to do is that the inner div gpsDataDiv will be table populate and later just assign here using this method document.getElementById(“gpsDataDiv”).innerHTML = htmlString;.
The problem here is that in IE there is space between the two div and also the data does not stop at 400px but it goes right down all the way and the presentation looks funny. How to overcome this problem?
<body>
<div id="left" style="width:220px;height:350px;float:left;background:white;">
<div id="gpsDataDiv" style="overflow: auto; max-height: 400px;background:white;"></div>
</div>
<div id="map" style="top:0px;left:220px;height:100%">Map goes here.
</div>
</body>