Skip to content

Instantly share code, notes, and snippets.

@obetame
Created March 29, 2018 09:12
Show Gist options
  • Save obetame/914ee59f332ad3a74c79798cbfabb69b to your computer and use it in GitHub Desktop.
Save obetame/914ee59f332ad3a74c79798cbfabb69b to your computer and use it in GitHub Desktop.
grid 布局
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