Last active
December 18, 2015 16:39
-
-
Save Plou/5813422 to your computer and use it in GitHub Desktop.
Responsive HTML/CSS samples & IE compatibility meta
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
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<!-- force device to display the page without zooming out --> | |
<meta name="viewport" content="initial-scale=1"> |
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
/*use the native scroll of touch devices */ | |
.scroll{ | |
-webkit-overflow-scrolling: touch; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment