-
-
Save AlexKardone/206ddcf63093d82447b952cd400c709a to your computer and use it in GitHub Desktop.
Grid Holy Grail on display: table
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
* { | |
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; | |
} |
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
<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