Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS height:100% doesn’t work? Re: height:100% doesn’t work?

#74111
threedash
Member

do you notice the empty space at the bottom near the footer on the
"about me" page and the "index" page?

I want it to wrap around the content. I don’t want the set

#midContent {
width:1000px;
height:1000px; <


(i don’t want to use this…)
background:url(IMG/mid_bg.png) repeat-y;
margin: 0;
padding: 30px 0 0 0; }

I was thinking of changing it to

#midContent {
width:1000px;
overflow: hidden; <


background:url(IMG/mid_bg.png) repeat-y;
margin: 0;
padding: 30px 0 0 0; }

im also using,

#me {
margin: -65px 0 0 100px;
float: left;
width: 330;
z-index:1;
}

negative margins to move the picture of myself into frame so this is effecting the "overflow:hidden" because it cuts off the picture.