CSS 中 content 高度不起作用的原因分析
这段代码中 content 的 height 属性设置为 '5000px',但是由于 box 容器的 min-height 属性设置为 '100vh',box 容器的高度会根据视口高度而改变。content 的高度只是 box 容器高度的一部分,因此 content 元素的高度看起来不会达到 '5000px'。
如果想让 content 元素的高度达到 '5000px',可以将 box 容器的 min-height 属性设置为 '5000px'。
原文地址: https://www.cveoy.top/t/topic/nh8D 著作权归作者所有。请勿转载和采集!