css - div可以溢出它的相对溢出:隐藏容器吗?

时间:2013-11-18 19:05:36

标签: html css overflow

是否有可能使整个.menu可见? (保持.box隐藏溢出及其相对位置)。

<style>
.box {
    position: relative;
    overflow: hidden;
    width: 400px;
    height: 100px;
    background-color: grey;
}

.menu {
    position:absolute;
    width: 100px;
    height: 200px;
    background-color: black;
}
</style>

<div class="box">
    <div class="menu"/>
</div>

1 个答案:

答案 0 :(得分:0)

试试这个:

   <style>
    .box {
        position: relative;
        overflow: hidden;
        width: 400px;
        height: 100px;
        background-color: #CCCCCC;

    }

.menu {
    position: fixed;
    width: 100px;
    height: 200px;
    background-color: black;


}
</style>

<div class="box">
    <div class="menu"></div>
</div>