Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的网站是一个单页网站,我希望能够使您在此网站中看到的面板垂直滚动。我尝试使用overflow-y: scroll但没有用。我将不胜感激任何帮助。
overflow-y: scroll
在您的 Css 文件中有一个属性
.panel { min-width: 100%; }
改变这个min-width : 100% to 80%;
min-width : 100% to 80%;
您有一个滚动条,但是由于您隐藏了 x 滚动条,因此由于定位问题而看不到它。
将 .panel 的最小宽度更改为 85% 而不是 100%。