我正在使用OpenLayers 3 API製作交互式遊戲地圖。我希望總共有四個面板,每側兩個(右側爲&),地圖顯示在中間,但地圖應位於側面板下方。 浮動,Z指數等一直困擾着我。我在這個主題上找到了一些答案,但我似乎無法將這些解決方案結合起來。在中間的OpenLayers地圖上的左側和右側的面板
當前將側面板和地圖的CSS:
.map {
min-height: 100%;
min-width: 100%;
z-index: 0;
padding: 0px 0px 0px 0px;
}
.sidebar {
z-index:9999;
background-color: #f2f2f2;
width: 20%;
margin: 1% 1% 1% 1%;
padding: 1% 1% 1% 1%;
outline: none;
border-style: solid;
border-width: 3px;
border-radius: 2px;
border-color: #9ecaed;
box-shadow: 0 0 10px #9ecaed;
}
.right { float: right; }
.left { float: left; }
3倍的DIV的HTML:
<div id="map" class="map"></div> <!-- Map, DIV that goes in the middle -->
<!-- Left sidebars -->
<div class="sidebar left">
I removed the content so it is shorter
</div>
<div class="sidebar left" style="padding-top: 0px; height: 50%;">
I removed the content so it is shorter
</div>
<!-- Right sidebars -->
<div class="sidebar right">
I removed the content so it is shorter
</div>
<div class="sidebar right" style="padding-top: 0px; height: 50%;">
I removed the content so it is shorter
</div>
我一直在嘗試這種answer,但結果是可怕的。
我編輯了我的問題,現在包含HTML – triankle