Created
June 24, 2018 22:26
-
-
Save jonathanjd/ba6a9c6efe869f46f4f71489c7ff48ac to your computer and use it in GitHub Desktop.
Media Query Testing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Large Devices | |
| @media (min-width:1200px) { | |
| #home-heading { | |
| h3 { | |
| color: blue; | |
| } | |
| } | |
| } | |
| //Medium Devices | |
| @media (min-width: 992px) and (max-width: 1199px) { | |
| #home-heading { | |
| h3 { | |
| color: yellow; | |
| } | |
| } | |
| } | |
| //Small Devices | |
| @media (min-width: 768px) and (max-width: 991px) { | |
| #home-heading { | |
| h3 { | |
| color: green; | |
| } | |
| } | |
| } | |
| // Extra Small | |
| @media (max-width:767px) { | |
| #home-heading { | |
| h3 { | |
| color: red; | |
| } | |
| } | |
| } | |
| // Extra Small | |
| @media (max-width:480px) { | |
| #home-heading { | |
| h3 { | |
| color: pink; | |
| } | |
| } | |
| } | |
| // Extra Small | |
| @media (max-width:320px) { | |
| #home-heading { | |
| h3 { | |
| color: purple; | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment