元素被迫在容器之外

时间:2010-09-27 19:54:04

标签: css

你可以强制一个容器内的元素超出包含的元素吗?

container{
width:985px;
margin:0 auto;
}

footer{ 
i need to force this outside of the container
}

希望这是有道理的。

2 个答案:

答案 0 :(得分:2)

溢出:可见;

答案 1 :(得分:2)

<强> CSS:

.container{
    width:985px;
    margin:0 auto;
    position:relative;
    padding-bottom:130px; /* height of footer + 30px (your own) */
    background:yellow;
}

.footer{ 
    position:absolute;
    left:-25px; /* (1045 - 985) / 2 */
    bottom:0; /* stick to bottom */
    width:1045px; height:100px;
    background:#CCCCCC;
}

<强> HTML:

<div class="container">
    Container Area
    <div class="footer">
        Footer Area
    </div>
</div>

预览

alt text