div的跨浏览器滚动条

时间:2011-02-26 14:14:42

标签: html cross-browser

我正在尝试找到一种方法来将跨浏览器兼容的滚动条添加到div。

我不得不求助于使用两种方法的混合 - 见下面的CSS:

.div{
    /*-Only works for IE*/
    overflow-y:scroll;
    overflow-x:hidden;

    /*Works for all browsers except IE*/
    overflow: -moz-scrollbars-vertical;
}

我用这种方法找到的唯一问题是非IE滚动条将div的内容移动到适应和仅IE的滚动条不会。

有没有人知道更好的方法?

1 个答案:

答案 0 :(得分:0)

我不知道这是否会有所帮助..但是

div {
width: 200px; /* as example*/
height: 300px; 
overflow: auto; /* this will add scrollbars automatically if your div is larger than the specified dimensions */
}

欢呼声

相关问题