bootstrap Media Query not working

css, html, twitter-bootstrap

Solution

Change media Query to

@media screen and (min-width: 768px) and (max-width: 900px) {

}

Or any size between you want.

For more Details Refer This link.

Problem

With twitter bootstrap i applied ``` @media only screen and (min-width : 768px){ } ``` but this media query is working on all other width values too, such as 992px & 1200px. Any solution?

Original source