Hide Scrollbar
2017-07-01 本文已影响6人
RoyTien
Hide Scrollbar and Keep the Scrolling Capability
::-webkit-scrollbar {
display: none;
}
Hide Scrollbar and Lose the Scrolling Capability
overflow: hidden;
::-webkit-scrollbar {
display: none;
}
overflow: hidden;