Skip to content

Instantly share code, notes, and snippets.

@AlexKardone
Created October 18, 2017 07:33
Show Gist options
  • Save AlexKardone/206ddcf63093d82447b952cd400c709a to your computer and use it in GitHub Desktop.
Save AlexKardone/206ddcf63093d82447b952cd400c709a to your computer and use it in GitHub Desktop.
Grid Holy Grail on display: table
* {
padding: 0;
margin: 0;
}
html, body {
height: 100%;
}
.wrap {
display: table;
width: 100%;
height: 100%;
}
.main {
display: table;
width: 100%;
height: 100%;
}
.box {
display: table-cell;
}
.box-left {
width: 80px;
background-color: yellow;
}
.box-right {
background-color: brown;
}
.header {
display: table-row;
height: 50px;
background-color: red;
}
.content {
display: table-row;
background-color: white;
}
.footer {
display: table-row;
height: 50px;
background-color: green;
}
<div class="wrap">
<div class="box box-left">left</div>
<div class="box box-right">
<div class="main">
<div class="header">header</div>
<div class="content">content</div>
<div class="footer">footer</div>
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment