简体   繁体   中英

How can I change hover in this nav-link Bootstrap which contains span and I (icon Bootstrap)?

<li class="nav-item mt-3">
    <a href="#" class="nav-link px-2 d-flex justify-content-start align-items-center">
        <i class="nav-icon bi bi-calculator-fill fs-4"></i>
        <span class="ms-2 fs-5">Comptabilité</span>
   </a>
</li>


#sidebarMenu  .nav-icon:hover span:hover{
    border-left: 4px solid #007bff;
    color: #269BF5;
}

How can I change hover in this nav-link Bootstrap which contains span and I (icon Bootstrap)?

.nav-item:hover{
border-left: 4px solid #007bff;
color: #269BF5;}

simply use this or you can add your custom class.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM