如何在'html”上使用'overflow:hidden”將滾動框移動到正文
P粉333395496
P粉333395496 2024-01-29 10:10:20
0
1
480

我剛剛偶然發現 overflow:hiddenhtml 上的使用,這對我來說似乎不合邏輯:

* {
  all: unset;
  display: revert;
}
html {
  height: 100vh;
  overflow: hidden;
  background: black;
}
body {
  height: 50vh;
  font-size: 5rem;
  background: white;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  overflow-y: scroll;
}
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.

這是關於將滾動框從 html 移動到 body ,但我不明白為什麼這個例子只適用於 overflow:hiddenbody的高度已經只有50vh,那麼html元素上應該不會發生溢出吧?

P粉333395496
P粉333395496

全部回覆(1)
P粉459578805

來自規格

html 上設定溢出將禁用傳播並在 body 元素上保留溢出

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板