Div adaptive height automatically fills the remaining height

Div adaptive height automatically fills the remaining height

Scenario 1:

Html:

<div class="outer">
    <div class="A">Header DIV </div>
    <div class="B">Lower DIV</div>
</div>

CSS:

html,
body { height: 100%; padding: 0; margin: 0; }
.outer { height: 100%; padding: 100px 0 0; box-sizing: border-box ; position: relative; }
.A { height: 100px; background: #BBE8F2; position: absolute; top: 0 ; left: 0 ; width: 100%; }
.B { height: 100%; background: #D9C666; }

Effect:

Scenario 2:

HTML:

<div class="outer">
    <div class="A">Header DIV</div>
    <div class="B">Lower DIV</div>
</div>

CSS:

html,
body { height: 100%; padding: 0; margin: 0; }
.outer { height: 100%; padding: 100px 0 0; box-sizing: border-box ; }
.A { height: 100px; margin: -100px 0 0; background: #BBE8F2; }
.B { height: 100%; background: #D9C666; }

Effect:

This is the end of this article about div adaptive height to automatically fill the remaining height. For more relevant div adaptive height content, please search 123WORDPRESS.COM's previous articles or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  Not all pop-ups are rogue. Tips on designing website pop-ups

>>:  Deploy the Vue project on a Linux server

Recommend

Example code for implementing ellipse trajectory rotation using CSS3

Recently, the following effects need to be achiev...

Detailed tutorial on installation and configuration of nginx under Centos7

Note: The basic directory path for software insta...

A brief description of the relationship between k8s and Docker

Recently, the project uses kubernetes (hereinafte...

Practice of el-cascader cascade selector in elementui

Table of contents 1. Effect 2. Main code 1. Effec...

Solution to EF (Entity Framework) inserting or updating data errors

Error message: Store update, insert, or delete st...

Three Ways to Lock and Unlock User Accounts in Linux

If you already have some kind of password policy ...

Graphic tutorial on installing Mac system in virtual machine under win10

1. Download the virtual machine version 15.5.1 I ...

How to purchase and initially build a server

I haven't worked with servers for a while. No...

Install and deploy java8 and mysql under centos7

Generally, learning Java and deploying projects a...

Common considerations for building a Hadoop 3.2.0 cluster

One port changes In version 3.2.0, the namenode p...

HTML meta usage examples

Example Usage Copy code The code is as follows: &l...

MySQL scheduled task example tutorial

Preface Since MySQL 5.1.6, a very unique feature ...