Safari中缺少滚动(MacOS)

时间:2018-03-01 09:12:23

标签: html css

我使用overflow-y创建滚动条,但在safari(MacOS)中缺少它。

请帮助,非常感谢。

.contentLeft{
    overflow-y: scroll;
}

在Chrome和Firefox上

enter image description here

徒步旅行

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在其上放置最大高度或高度值

.contentLeft {
   overflow-y: scroll;
   max-height: 400px;
   /* height: 400px; */
 }

您可以选择最大高度或高度值,不要同时使用两者。选择