开发者

Liquid CSS layout issues

开发者 https://www.devze.com 2022-12-17 10:23 出处:网络
Alright I have a CSS liquid div based layout for my personal web site.The address is http://danberinger.com/preview.html

Alright I have a CSS liquid div based layout for my personal web site. The address is http://danberinger.com/preview.html

The problem is the I d开发者_运维技巧o not want the footer section to act as if it were displayed inline, because right now when the window is stretched beyond the pixel width needed for the intro_container, it moves the footer div to the right of it. I would like this footer to stay put at the bottom of the page rather than moving up and to the right when space allows for it.

Thanks for any help you can offer. I have loved this forum so far, very helpful.


#footer {
    clear: both;
}

This will ensure it is always pushed down below all other floated content. This seems to provide the effect you are asking for.


here is css fix for it

#footer{
position:absolute;
bottom:0;
}
0

精彩评论

暂无评论...
验证码 换一张
取 消