|
Any ideas why this isnt working, I want 'wrapper' to be centered horizontally (which it is) but also its height to be 100% which it isnt:
body {
text-align: center;
min-width: 724px;
height: 100%;
}
#wrapper {
height: 100%;
margin:0 auto;
width:724px;
text-align: left;
background-repeat: repeat-y;
background-color: #FccFFF;
background-image: url(images/bg.jpg);
}
Thanks.
|