CSS溢出:在Chrome和Firefox中具有非固定宽度问题的内联块自动播放

时间:2016-05-27 18:13:21

标签: css google-chrome firefox scrollbar overflow

问题出在Chrome和Firefox上。

滚动容器是一个内嵌块,包含非固定widthmax-height overflow:auto

当内部.content div具有padding时,滚动条会在右侧填充区域上方显示。但是,当我设置overflow-y:scroll时,滚动条会在正确的位置显示,并且.scroll div的宽度会增加。

请参阅JSFiddle example中的复制。

如何解决?

body {
    background: #fff;
}
.scroll {
    display: inline-block;
    background: #f99;
    max-height: 200px;
    overflow: auto;
}
.content {
  padding: 20px;
}

在Opera 12和IE 9+中都可以

https://i.gyazo.com/6c84537d6c0dc1422981342785893277.png

0 个答案:

没有答案