javascript - Bootstrap navigation collapse on large screen -


i have checked many sites using bootstrap menu, collapse after screen size , using 22 inch screen , navbar collapse when see website..

you have use media query screen size in terms of pixels.

for example:

// landscape phones , below @media (max-width: 480px) { ... }  // landscape phone portrait tablet @media (max-width: 768px) { ... }  // portrait tablet landscape , desktop @media (min-width: 768px) , (max-width: 980px) { ... }  // large desktop @media (min-width: 1200px) { .. } 

Comments