有很多這樣的問題,但我一直無法找到一個可以回答如何僅洗掉水平滾動條同時仍然能夠水平滾動的問題:
我使用了以下代碼,但它洗掉了水平和垂直滾動條:
.section {
overflow-y: auto;
scrollbar-width: none; /*For firefox*/
}
::-webkit-scrollbar {
display: none; /*For remainder of the browsers*/
}
uj5u.com熱心網友回復:
嘗試這個:
.section {
overflow-x: scroll;
scrollbar-width: none;
overflow-y: auto;
}
.section::-webkit-scrollbar {
display: none;
}
轉載請註明出處,本文鏈接:https://www.uj5u.com/yidong/366786.html