嵌套的div溢出不起作用

时间:2012-07-15 00:20:56

标签: css html nested

当我将div(即<div style="width:200;height:200;overflow-y:scroll;">)内容滚动到具有div属性的另一个overflow内时,它会将第二个div视为我不喜欢没有设置尺寸(高度200和宽度200)。右侧的滚动条显示但不会起作用,因为每次添加内容时div都会下降而不是滚动。

首先divs css:

#slide1_container 
{
        width:976px;
        height:520px;
        overflow:hidden;
        position:relative;
        margin:0 auto;
    }

嵌套div:

overflow-y:scroll;

1 个答案:

答案 0 :(得分:3)

您在div的内联样式中的尺寸上遗漏了px

<div style="width:200;height:200;overflow-y:scroll;">

应该是

<div style="width:200px;height:200px;overflow-y:scroll;">