Bootstrap 3 CSS Media Queries

/* Mobile First Method */ @media only screen and (min-width : 320px) { } @media only screen and (min-width : 480px) { } @media only screen and (min-width : 768px) { } @media only screen and (min-width : 992px) { } @media only screen and (min-width : 1200px) { } /*Non-Mobile First Method */ @media only screen and (max-width : 1200px) { } @media only screen and (max-width : 992px) { } @media only screen and (max-width : 768px) { } @media only screen and (max-width : 480px) { } @media only screen and (max-width : 320px) { }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.