I tried the following example from Bootstrap official website with alpha version Bootstrap 4. But the dropdown-item are not like hyperlinks:
<div class="dropdown open">
<button class="btn btn-primary dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
Dropdown
</button>
<div class="dropdown-menu" aria-labelledby="dropdownMenu1">
<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>
I tried adding the classes disabled or btn-link into the dropdown-item but items still don't appear as links. I'm looking for a solution without JavaScript
Aucun commentaire:
Enregistrer un commentaire