Last active
September 10, 2017 16:22
-
-
Save idevwise/49ddec668c1c1d5dae39678869eed6e5 to your computer and use it in GitHub Desktop.
Fixed position layout
This file contains 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
header, footer { | |
position: fixed; | |
text-align: center; | |
width: 100%; | |
background-color: blue; | |
color: white; | |
height: 48px; | |
line-height: 48px; | |
} | |
header { | |
top: 0; | |
} | |
footer { | |
bottom: 0 | |
} | |
footer input { | |
width: 50%; | |
} | |
main { | |
padding: 48px 0; | |
background-color: yellow; | |
color: red; | |
width: 100%; | |
} | |
/*To prevent auto-zoom in Safari*/ | |
.safari input[type='text'] { | |
font-size: 16px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment