I am using Bootstrap 3 and attempting to create a dual sidebar layout. Here's what I have so far: http://jsfiddle.net/Y52n9/11/
However, when you resize the preview screen to be large enough, you'll notice that the sidebar height is not reaching 100%. I've tried various solutions but haven't been able to fix it. Does anyone have any tips for me?
This is my HTML code:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>xmed</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
...
Below is my CSS code:
html, body{
height: 100%;
}
.height{
height:100%;
}
...