Safari中缺少滚动(MacOS)

问题描述 投票:0回答:1

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

请帮忙,非常感谢。

.contentLeft{
    overflow-y: scroll;
}

在chrome和firefox上

enter image description here

在野生动物园

enter image description here

html css
1个回答
1
投票

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

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

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

© www.soinside.com 2019 - 2024. All rights reserved.