我正在使用HTML和CSS創建一個水平導航欄。這項工作很簡單,並且輕鬆完成。然後,我決定將下拉菜單包含在導航欄中最初出現的每個鏈接上。在HTML中實現下拉菜單
作爲樣品分配,我創建與三通「Dropdown1」水平導航欄,「Dropdown2」,「Dropdown3」,然後加到下拉菜單到這三個鏈接。每個下拉菜單隻需要包含三個附加鏈接。 (總共3x3 = 9個下拉鍊接,這些下拉鍊接編號爲link01至link09)。
截圖導航欄的鏈接
的問題是,所有的下拉列表鏈接與每個導航條鏈接相關聯。我收到類似的輸出
時Dropdown1和Dropdown3都徘徊同樣適用。理想情況下,懸停在Dropdown1上必須只顯示Link01,Link02和Link03。同樣,懸停在Dropdown2上必須只顯示Link04,Link05和Link06等。
我寫的HTML代碼是
<ul>
<div class="dropdown">
<li>
<a href="#"> Dropdown1</a>
<div class ="dropdown-content">
<a href="#">Link01</a><!-- actual content of the dropdown will consists of hyperlinks -->
<a href="#">Link02</a>
<a href="#">Link03</a>
</div>
</li>
<li>
<a href="#"> Dropdown2</a>
<div class ="dropdown-content">
<a href="#">Link04</a><!-- actual content of the dropdown will consists of hyperlinks -->
<a href="#">Link05</a>
<a href="#">Link06</a>
</div>
</li>
<li>
<a href="#"> Dropdown3</a>
<div class ="dropdown-content">
<a href="#">Link07</a><!-- actual content of the dropdown will consists of hyperlinks -->
<a href="#">Link08</a>
<a href="#">Link09</a>
</div>
</li>
</div> <!--closing the dropdown container-->
有什麼收穫?
我投票,因爲我認爲這是一個更適合http://webmasters.stackexchange.com –
凡使用CSS來生成電流輸出關閉這一問題作爲題外話? –