1
在Bootstrap 3上這很容易,你只需要改變跨度並添加你想要的任何圖標。但Bootstrap 4似乎並不是這樣。或者我錯過了什麼?在Bootstrap上更改下拉圖標4
不管怎樣,下面是它的基本代碼:
<div class="dropdown">
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown button
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
<a class="dropdown-item" href="#">Action</a>
<a class="dropdown-item" href="#">Another action</a>
<a class="dropdown-item" href="#">Something else here</a>
</div>
</div>
可有人告訴我,如果有可能改變這一以及如何下拉圖標?我想添加一個來自fontawesome。
謝謝!
就是這樣!謝謝,ZimSystem。 – Retros
display:none是一個更好的解決方案,因爲如果你刪除了dropdown-toggle類,那麼嵌套下拉菜單(下拉菜單中的下拉菜單)將不起作用。 – astralmaster