1
美好的一天, 我想知道是否有人可以看看這個幫助我理解爲什麼第二個標籤按鈕似乎不起作用。 我想使用標籤按鈕和右側div來製作包裝div,左側div以顯示內容。 如果我把左邊的顯示/隱藏div與按鈕然後它顯示並隱藏它應該,但是,當它在右邊的div時,按鈕什麼也不做。在另一個容器中顯示/隱藏div
#chk:checked~#tab1,
#chk2:checked~#tab2 {
display: none;
}
div.wrapper {
width: 100%;
background: black;
height: 300px;
}
div.forred {
width: 80%;
float: right;
}
div.left {
width: 20%;
float left;
}
div#tab1 {
background: red;
width: 100%;
text-align: center;
}
div#tab2 {
background: red;
width: 100%;
text-align: center;
}
div.right {
width: 80%;
float: right;
}
input.tabs {
display: none;
}
label.tab_button {
float: left;
padding: 15px 0px;
font-weight: 600;
text-align: center;
color: #FFFFFF;
border-bottom: 1px inset black;
background: #30E514;
width: 100%;
}
<div class="wrapper">
<div class="left">
<input type=checkbox id=chk class=tabs>
<label for=chk class=tab_button>tab 1</label>
<input type=checkbox id=chk2 class=tabs>
<label for=chk2 class=tab_button>tab 2</label>
<div id=tab1>
OVER HERE
</div>
</div>
<div class="right">
<div id=tab2>
OVER HERE
</div>
</div>
</div>
謝謝你的幫助。我試圖讓div顯示在右邊。所以當左邊div容器中的按鈕被按下時,它會在右邊顯示div。有沒有辦法讓按鈕顯示在右邊的其他股利div內容? – jObE