-
-
Save obetame/914ee59f332ad3a74c79798cbfabb69b to your computer and use it in GitHub Desktop.
grid 布局
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
html, body { | |
height: 100%; | |
margin: 0; | |
} | |
.app { | |
height: 100%; | |
display: grid; | |
grid-template-rows: 45px 1fr; | |
grid-template-columns: 200px 1fr; | |
} | |
header { | |
box-shadow: 0 2px 5px rgba(0, 0, 0, .16); | |
/* stretch from first grid line to last grid line */ | |
grid-column: 1/-1; | |
} | |
aside { | |
background-color: #213e48; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment