[Solved] bootstrap is not responsive [closed]


Try giving the .navbar-nav class a width of 100% on small devices such as:

@media (max-width: 480px) {

        .navbar-nav {

        width: 100%;
        }
}

1

solved bootstrap is not responsive [closed]