Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
    <div class="wrap">
        <div class="header">
            Header
        </div>      
        
        <div class="table">
            
            <div class="cell">
                    I'm Vertically Centered!
            </div>
            
            <div class="cell">
                I'm Vertically Centered!
            </div>
            
        </div>
        
        <div class="footer">
            Footer
        </div>      
    </div>      
</body>
</html>
 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body {
    height: 100%;
}
.wrap {
    height: 100%;
}
.header {
    height: 5%;
    border: solid 1px #000;
    border-bottom: none;
}
.table {
    display: table;
    height: 90%;
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.cell {
    display: table-cell;
    border: solid 1px #000;
    vertical-align: middle;
}
.footer {
    height: 5%;
    border: solid 1px #000;
    border-top: none;
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
misterManSampro
0viewers