標題重寫為:HTML元素高度未達100%的覆蓋
P粉359850827
P粉359850827 2023-09-15 08:52:48
0
1
525

我希望這個元素覆蓋螢幕高度的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粉359850827
P粉359850827

全部回覆(1)
P粉014293738

使用此程式碼作為body:

body {
    height: 100vh;
}
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!