Skip to content

Instantly share code, notes, and snippets.

@jacobbednarz
Created April 1, 2012 12:09
Show Gist options
  • Save jacobbednarz/2274941 to your computer and use it in GitHub Desktop.
Save jacobbednarz/2274941 to your computer and use it in GitHub Desktop.
100% CSS div height
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>100% CSS div height</title>
<style>
html, body { height: 100%; }
#left_panel { height: 100%; }
</style>
</head>
<body>
<div id="left_panel">
left panel
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment