Last active
January 26, 2021 13:17
-
-
Save acidtone/6aeb476a3c9bbc9788ce1ebc958b98d1 to your computer and use it in GitHub Desktop.
Media queries: orientation
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>Portrait/Lanscape Orientation</title> | |
<style> | |
/* Set default styles. In this case, styles for portrait orientation (most likely mobile). */ | |
body { | |
background-color: grey; | |
} | |
@media screen and (orientation: landscape) { | |
/* Override default styles (or declare new ones) when screen is wider than it is tall. */ | |
body { | |
background-color: goldenrod; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment