Created
January 17, 2019 11:40
-
-
Save dyh333/c205e25fbbc7672a093ddbaa505ed08e to your computer and use it in GitHub Desktop.
media query test html
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=5600, initial-scale=100"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | |
<title>Document</title> | |
<style> | |
body { | |
margin: 0; | |
overflow: auto; | |
} | |
.wrapper { | |
width: 100px; | |
/* float: left; */ | |
} | |
@media (min-width: 0px) and (max-width: 5600px) { | |
.wrapper { | |
background-color: red; | |
} | |
} | |
@media (min-width: 5600px) { | |
.wrapper { | |
background-color: blue; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="wrapper">aaa</div> | |
<div class="wrapper" style="position: fixed; right: 0px; top: 0px;">ddd</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment