I have no idea how to do this, essentially I want the columns to touch from top of div to bottom of div when said div has a min-height
of 100%. But this does not work:
html, body {
height: 100%;
}
body {
max-width: 1500px;
margin: 0 auto;
}
#wrapper {
min-height: 100%;
overflow: auto;
}
.container {
min-height: 100%;
overflow: auto;
}
.container .row .col-md-6 {
min-height: 100%;
}
The wrapper extends to the bottom of the page, but the container div does not. It only extends to the end of the content contained with in.
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Title of the document</title>
</head>
<body>
<div id="wrapper">
<div class="container">
<div class="row">
<div class="col-md-6"></div>
<div class="col-md-6"></div>
</div>
</div>
</div>
</body>
</html>
Is there something I am missing? The body and html go 100%, the wrapper goes 100% of that and then the container doesn't go 100% ... why?