Detailed explanation of CSS3 flex box automatic filling writing

Detailed explanation of CSS3 flex box automatic filling writing

This article mainly introduces the detailed explanation of the automatic filling writing method of CSS3 flex elastic box, and shares it with you, as follows:

<style type="text/css">
    .flexcontainer{
        width:100%;
        height: 100%;
        position: absolute;
        left:0px;
        top:0px;
        display: flex;
        flex-direction: column;
    }
    .flex1 {
        width: 100%;
        height: 8rem;
        float: left;
        background: #f00;
    
    }
    .flex2 {
        width: 100%;
        height: 4rem;
        flex:1;
        float: left;
        background: #000;
    }
   .flex3 {
        width: 100%;
        height: 7rem;
        float: left;
        background: #ccc;
    }    
</style>
<div class="flexcontainer">
    <div class="flex1"></div>
    <div class="flex2"></div>
    <div class="flex3"></div>
</div>

This is the end of this article on the detailed explanation of how to write automatic filling of CSS3 flex elastic box. For more relevant CSS3 flex automatic filling content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future!

<<:  Detailed explanation of tinyMCE usage and experience

>>:  Use IISMonitor to monitor web pages and automatically restart IIS

Recommend

How to solve the problem that the project in eclipse cannot be added to tomcat

1. Right-click the project and select properties ...

A brief discussion on the role of HTML empty links

Empty link: That is, there is no link with a targ...

What is TypeScript?

Table of contents 1. JavaScript issues 2. Advanta...

MySQL learning notes: data engine

View the engines supported by the current databas...

MySql sharing of null function usage

Functions about null in MySql IFNULL ISNULL NULLI...

VMware, nmap, burpsuite installation tutorial

Table of contents VMware BurpSuite 1. Virtual mac...

Let’s take a look at JavaScript precompilation (summary)

JS running trilogy js running code is divided int...

How to hide the version number in Nginx

Nginx hides version number In a production enviro...

MySQL 5.7.23 installation and configuration method graphic tutorial

This article records the installation tutorial of...

Detailed explanation of the underlying encapsulation of Java connection to MySQL

This article shares the Java connection MySQL und...

How to deploy Vue project using Docker image + nginx

1. Packaging Vue project Enter the following name...

Detailed explanation of concat related functions in MySQL

1. concat() function Function: Concatenate multip...

30 minutes to give you a comprehensive understanding of React Hooks

Table of contents Overview 1. useState 1.1 Three ...