Skip to content

Instantly share code, notes, and snippets.

@amelieykw
Created March 29, 2018 15:44
Show Gist options
  • Save amelieykw/fbd3868091e5e8d793b709a2fd926f4d to your computer and use it in GitHub Desktop.
Save amelieykw/fbd3868091e5e8d793b709a2fd926f4d to your computer and use it in GitHub Desktop.
[inner div full height/width outer div] #html #css #div #fullwidth #fullheight
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%
}
<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