移除滚动条可以滚动

html,
body {
  // IE10+
  -ms-overflow-style: none;
  // 火狐
  overflow          : -moz-scrollbars-none;
}

body::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 10px !important;
}

body {
  font-size: 14px;
}

你可能感兴趣的:(移除滚动条可以滚动)