Here is a very basic question about filling the viewport. Its a simple bit of html/js, involving a table and a canvas. I can get the canvas filling the area of the screen I want it to. But I cannot get the table div, with the green background, filling the entire full height of the viewport.
Please help.
<!DOCTYPE html>
<html>
<head>
<title>I do not understand CSS</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
function MyOnLoad() {
var menuWidth = 250;
var width, height, widthWin, heightWin, widthDoc, heightDoc, widthMain;
var divScreen = document.getElementById('divScreen');
var divMenu = document.getElementById("divMenu");
var tableMenu = document.getElementById("mytable");
var divMain = document.getElementById("divMain");
widthWin = $(window).width(); // returns width of browser viewport
heightWin = $(window).height(); // returns width of browser viewport
widthDoc = $(document).width(); // returns width of HTML document
heightDoc = $(document).height(); // returns width of HTML document
width = widthWin;
height = heightWin;
divMenu.style.width = menuWidth;
divMenu.style.height = height;
divMenu.style.background = "#AAFFAA";
tableMenu.style.height = height;
//$("#divMenu").css({ 'width': 'menuWidth', 'height': 'height', 'min-height': 'height', 'background': '#AAFFAA' });
widthMain = width - menuWidth;
divMain.style.width = widthMain;
divMenu.style.height = height;
divMain.style.marginleft = menuWidth;
divMain.style.background = "#AAAAFF";
var mycanvas = document.getElementById("mycanvas");
var context = mycanvas.getContext("2d");
mycanvas.width = widthMain; // This also clears the canvas. Reset it to its width to clear the canvas
mycanvas.height = height; // Cant use divMain.style.height because these are "123px" strings
context.fillStyle = "rgba(255,0,0,255)";
context.fillRect(50, 50, widthMain - 100, height - 100);
}
</script>
</head>
<body onload="MyOnLoad()" style="width:100%; height: 100%; padding: 0 0 0 0; margin: 0 0 0 0; overflow: hidden; background:#000000">
<div id="divScreen" style="display: block; width:100%; height: 100%;">
<div id="divMenu" style='float: left; min-width: 250px; max-width: 250px; background:#00FF00; border-color: #000000; border-width: 1px;'>
<table id="mytable">
<tr>
<td>This is a table</td>
</tr>
<tr>
<td>Yep, definitely a table</td>
</tr>
<tr>
<td>But the green div should be going to the bottom of the screen. Why can't I get it to do that?</td>
</tr>
</table>
</div>
<div id="divMain" style='height: 100%; background:#0000FF; margin-left: 250px; border-color: #000000; border-width: 1px;'>
<canvas id="mycanvas" width="100" height="100"></canvas>
</div>
</div>
</body>
</html>
$(tableMenu).height(height);somewhere afterheightis set. – Yoshi Oct 20 '11 at 15:52