2 100%列+粘性页脚

时间:2013-04-08 21:32:52

标签: html css

所以我正在创建一个网站,这里是:http://www.testeeee.cixx6.com/

我不能把site_contente,内容和侧边栏(这2个在site_contente里面)100%高度。

基本上我希望内容和侧边栏无论如何都是100%。当内容div上的内容超过100%时,我希望它滚动,我的意思是,只滚动内容滚动。

我想要的例子:

http://i.stack.imgur.com/i2rid.jpg

2 个答案:

答案 0 :(得分:1)

根据您提交的内容,您需要使用iframe。但是,您可能指的是这样的内容:How might I force a floating DIV to match the height of another floating DIV?

答案 1 :(得分:0)

在DIV中设置滚动使用样式属性

overflow:scroll|auto
overflow-x: scroll|auto
overflow-y: scroll|auto

尺寸确定我认为你已经回答了

编辑¿你有没有试过???:

复制其他答案中提到的问题:

<DIV id="site_content" >

<DIV id="content" style="float : left; width :65%; height:auto;background-color:#FDD017;">
</DIV>

<DIV id="side_bar" style="float : left; width :35%;height:auto; background-color:#FDD017;">
</DIV>

</DIV>