如何在WordPress首页上添加ScrollBar

时间:2019-03-25 14:17:24

标签: html css scrollbar

我想使用方向按钮向页面添加滚动条

html {
  position: fixed;
  height: 100%;
  overflow: hidden;
}

body {
  font-family: sans-serif;
  margin: 0;
  width: 100vw;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.color-picker-main-container {
  width: 100%;
  font-size: 22px;
  padding-bottom: 110px;
}

footer {
  position: relative;
}

1 个答案:

答案 0 :(得分:0)

只需在!important中添加overflow: hidden就可以解决您的问题。谢谢

html {
  position: fixed;
  height: 100%;
  overflow: hidden !important;
}