How to apply @media
for tablet of width 991px? I already the CSS file that is working for mobiles but on switching to tablets the entire css is different. How can I make the same CSS apply for the tablet as it is working for mobiles in the dropdown menu?
I have tried this for the CSS:
@media (max-width: 991px) {
.navbar-header {
float: none;
}
.navbar-toggle {
display: block;
}
.navbar-collapse.collapse {
display: none !important;
}
.navbar-nav>li {
float: none;
background: black;
}
.navbar-text {
float: none;
margin: 15px 0;
}
.navbar-collapse.collapse.in {
display: block !important; }}
Here is the Plunker. Here I want the drown down menu to work for the width up to 991px but it is working for up to width 768px. How can change it?
change your div's classs
with collapse navbar-collapse col-lg-6 col-md-6 col-sm-12 col-xs-12
change in class