0
目標:
的「圖片」創建一個下拉菜單(使用引導程序的下拉列表)在麪包屑菜單下拉菜單3
問題:
我曾嘗試通過使用自舉3這樣做,但它沒「T那麼好走
信息:
*今天的網頁(http://jsbin.com/yobizugeba/edit?html,output)
謝謝!
目標:
的「圖片」創建一個下拉菜單(使用引導程序的下拉列表)在麪包屑菜單下拉菜單3
問題:
我曾嘗試通過使用自舉3這樣做,但它沒「T那麼好走
信息:
*今天的網頁(http://jsbin.com/yobizugeba/edit?html,output)
謝謝!
做這個菜單自己
<div class="container">
<img src="http://placehold.it/350x150" alt="">
<ul class="dropdown">
<li>12345</li>
<li>12345</li>
</ul>
</div>
.dropdown {
display: none;
position: absolute;
}
.container img:hover + .dropdown {
display: block;
}
是的,這個例子http://www.w3schools.com/bootstrap/bootstrap_dropdowns.asp – grinmax
它不完全看原來的麪包屑,當我使用下拉列表。 –
然後,你需要自定義CSS這個下拉菜單中,讓我請你設計下拉 – grinmax