Hey guys,
I’m having a problem trying to get a div to show up the entire height of the page. It works fine in IE 7, Firefox, Chrome, etc.
Here’s the snippet of the code in question.
<html>
<head>
<style>
.custom #page {
margin: 0 auto;
width: 80%;
}
.custom .page-border-left {
background: transparent left repeat-y url('http://images2508.googlepages.com/page-border-left.jpg');
width:5%;
height:100%;
float:left;
position:fixed;
}
</style>
</head>
<body class="custom">
<div id="container">
<div id="page">
<!-- Start Left Page Border -->
<div class="page-border-left"></div>
</div>
</div>
</body></html>