so yeah, makin a site and trying to get a div to be a left bar that's 100% height. it just seems it's stuck at 100% of the default size of the window, so if the content is larger than that, it won't extend to the new size of the document. any ideas?
here's the location of the website
http://www.peacefuloaksbandb.com
and here's my stylesheet
here's the location of the website
http://www.peacefuloaksbandb.com
and here's my stylesheet
Code:
html {
height: 100%;
}
body {
padding: 0px 0px 0px 0px;
margin: 0px 0px 0px 0px;
height: 100%;
}
a.nav {
color: green;
text-decoration: none;
}
a.nav:hover {
text-decoration: underline;
}
span.title {
font: 20pt bold sans-serif;
}
#logoDiv {
position: absolute;
top: 0px;
left: 180px;
width: 600px;
height: 150px;
}
#navDiv {
position: absolute;
top: 0px;
left: 0px;
width: 170px;
height: inherit;
min-height: 100%;
color: green;
font: 14pt sans-serif;
text-align: right;
background-color: #ffe8b1;
padding-right: 5px;
border-right: 2px solid #7e531a;
}
#contentDiv {
position: absolute;
top: 165px;
left: 180px;
width: 600px;
font: 11pt sans-serif;
color: green;
}