搜索

首页  >  问答  >  正文

标题重写为:HTML元素高度未达到100%的覆盖

我希望这个元素覆盖屏幕高度的100%,显然没有这样做,有什么解决方法吗? 我看到div的高度是section的100%,而section的高度是body的100%,而body被设置为100%。

<body>
    <section id="Block1">
        <div class="firstsection">
            <h1>Lorem Ipsum</h1>
            <p>Lorem ipsum dolor, sit amet consectetur adipisicing elit. Nemo magnam iusto quibusdam quas reiciendis fugit architecto consequatur similique distinctio dolore repudiandae rem illo alias iure sunt eos culpa, amet consectetur!</p>
        </div>
    </section>
</body>

CSS

body {
    width: 100%;
    height: 100%;
}
* {
    padding: 0px;
    margin: 0px;
}
.firstsection {
    width: 50%;
    height: 100%;
    background-color: yellowgreen;
    text-align: center;
}
#Block1 {
    width: 100%;
    height: 100%;
}

P粉359850827P粉359850827437 天前537

全部回复(1)我来回复

  • P粉014293738

    P粉0142937382023-09-16 00:37:32

    使用此代码作为body:

    body {
        height: 100vh;
    }

    回复
    0
  • 取消回复