2017-10-18 8 views

Répondre

0

Vous pouvez étendre de gauche à droite juste changer .navbar-nav -webkit-box-orient: vertical; à css -webkit-box-orient: horizontal; et flex-direction: column;-flex-direction: row; dans toutes les sections de CSS. Exemple de code comme ci-dessous

.navbar-nav { 
    display: flex; 
    -webkit-box-orient: horizontal; 
    -webkit-box-direction: normal; 
    flex-direction: row; 
    padding-left: 0; 
    margin-bottom: 0; 
    list-style: none 
}