Created
March 29, 2018 15:44
-
-
Save amelieykw/fbd3868091e5e8d793b709a2fd926f4d to your computer and use it in GitHub Desktop.
[inner div full height/width outer div] #html #css #div #fullwidth #fullheight
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%; | |
} | |
.outer{ | |
background-color:blue; | |
height: 80%; border:red solid 2px; | |
display: table; | |
width:100% | |
} | |
.inner-title{ | |
background-color:red; | |
display:table-row; | |
width:100% | |
} | |
.inner-content{ | |
background-color:grey; | |
display:table-row; | |
width:100%; | |
height:100% | |
} |
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="outer"> | |
<div class="inner-title"> | |
THIS IS MY TITLE | |
</div> | |
<div class="inner-content"> | |
CONTENT AREA | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment