Ich möchte, dass dieses Element 100 % der Bildschirmhöhe abdeckt. Offenbar funktioniert das nicht. Gibt es eine Lösung? Ich sehe, dass die Höhe des Div 100 % des Abschnitts und die Höhe des Abschnitts 100 % des Körpers beträgt, während der Körper auf 100 % eingestellt ist.
<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%; }
使用此代码作为body: