Silence-dream / Silence-dream.github.io

blog博客
https://silence-dream.github.io
3 stars 0 forks source link

1920 宽度不显示横向滚动条 #6

Open Silence-dream opened 1 year ago

Silence-dream commented 1 year ago
html {  
  overflow-y: scroll;  
}  

:root {  
  overflow-y: auto;  
  overflow-x: hidden;  
}  

body {  
  width: 100vw;  
  font-family: "\5FAE\8F6F\96C5\9ED1";  
  padding-top: 42px;  
  overflow: hidden;  
}
Silence-dream commented 1 year ago

竖向不显示

html {
  scrollbar-width: none;
  ::-webkit-scrollbar {
    display: none;
  }
  -ms-overflow-style: none;
}