可觀摩
左右兩側還有按鈕可移動
https://codepen.io/zackshave/pen/LYLYWPv?editors=1010沒有出現卷軸,cursor: grab 的方式橫向移動
https://codepen.io/syrizaldev/pen/JjKQGXNoverflow-x: auto;
內容超過viewport,出現卷軸
https://codepen.io/Parasulito/pen/PoJQMpw?editors=1100
要出現卷軸的可能是<table>
或<div>
,要在內容的外一層設定卷軸。
html file
<div class='scroll'>
<table>...</table>
</div>
css file
.scroll {
overflow-x: auto;
}