我知道這個問題已經在本網站上提出過了,我已經看過所有的答案。但是,我仍然無法找到解決方案。CSS中的重疊DIV
當我調整瀏覽器的大小時,我所有的div(以後會是按鈕)都會彼此超越。
* {
margin: 0;
padding: 0;
}
body {
background-color: beige;
}
#Rosa {
color: White;
font-family: Arial Black;
max-width: 100px;
height: 25px;
position: fixed;
left: 90%;
top: 1.5%;
z-index: 2;
padding: 2px;
border-bottom: 1px solid white;
border-top: 1px solid white;
overflow: hidden;
}
#Martin {
color: White;
font-family: Arial Black;
max-width: 147px;
height: 25px;
z-index: 2;
position: fixed;
left: 77%;
top: 1.5%;
padding: 2px;
border-bottom: 1px solid white;
border-top: 1px solid white;
overflow: hidden;
}
#Malcom {
color: white;
font-family: Arial Black;
max-width: 87px;
height: 25px;
padding: 2px;
z-index: 2;
position: fixed;
left: 68.5%;
top: 1.5%;
border-bottom: 1px solid white;
border-top: 1px solid white;
overflow: hidden;
}
#Design {
color: white;
font-family: Arial Black;
width: 60px;
height: 25px;
padding: 2px;
z-index: 2;
position: fixed;
left: 62%;
top: 1.5%;
border-bottom: 1px solid white;
border-top: 1px solid white;
overflow: hidden;
}
.navigation a {
text-decoration: none;
color: black;
}
#Bar {
min-width: 100%;
max-height: 260px;
position: fixed;
top: 0px;
z-index: 1;
}
<div class="navigation">
<div id="Rosa"> Rosa Parks </div>
<div id="Martin">Martin Luther Jr.</div>
<div id="Malcom">Maclom X</div>
<div id="Design">Design</div>
<img id="Bar" src=./assets/bar.png>
</div>
任何幫助表示讚賞。謝謝。
P.s.這是一個導航欄,即使在您滾動時,它也會停留在頁面的頂部。
請發表html。你看過flexbox嗎? – Naomi
已發佈圖片不存在。 – kojow7