这是我正在处理的网站的链接:http: //thoughtfi.com/practiceIMR3.html
我试图让侧边栏延长浏览器窗口的长度,宽度约为 200 像素,然后让地图填充浏览器窗口的其余部分。我花了很多时间弄乱css来让它工作,但没有任何运气。当我将地图 div 的 css 设置为屏幕的一部分时,它会切掉大部分地图。当我将滚动条的长度设置为 100% 时,它包含所有信息,并且没有单独的滚动条来扩展页面的长度。
这是我的css目前的样子:
<style type="text/css">
html, body, #map_canvas {
width: 800px;
height: 600px;
}
#sidebar {
width:200px;
height:600px;
overflow:auto;
}
</style>
这是我身体的重要部位:
<body onload="initialize_page()" style = "height:100%; margin:0">
<button onclick="hide_markers_kml();">hide</button>
<button onclick="unhide_markers_kml();">unhide</button>
<table style="width:100%;">
<tr>
<td>
<div id="sidebar"></div>
</td>
<td>
<div id="map_canvas"></div>
</td>
</tr>
</table>