为什么溢出不起作用?

时间:2013-03-08 16:43:46

标签: css

这是我的CSS;我需要它为其所有内容滚动或自动溢出。我无法理解为什么它没有出现。

.holder{
    display: table;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    top: 2.5%;
    width: 90%;
    height: 95%;
    background-image:url("images\\tile2.png");
    background-repeat:repeat;
    overflow: scroll;
}

1 个答案:

答案 0 :(得分:1)

删除display: table;,您会看到滚动条。

直播示例:http://jsbin.com/aloler/1/edit

以下是移除了display: table;的代码:http://jsbin.com/aloler/2/