Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 711 Bytes

CSS显示滚动条.md

File metadata and controls

32 lines (20 loc) · 711 Bytes
title date tags
CSS显示滚动条
2017-07-14
CSS

一般使用

一般来说,使用

overflow-y: scroll;

就可以显示了

但是在Mac上,只有滚动时才会显示滚动条,不滚动时会隐藏。

In OS X Lion, overflow set to "scroll" behaves more like auto in that scrollbars will only show when being used. They will disappear when not in use. – stackoverflow

解决方案

研究之后,加载下面的CSS可以一直显示

::-webkit-scrollbar { -webkit-appearance: none; width: 7px; }

::-webkit-scrollbar-thumb { border-radius: 4px; background-color: rgba(0, 0, 0, .5); -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5); }