How to make a div height adaptive to the browser height

How to make a div height adaptive to the browser height
This old question has troubled countless front-end developers and back-end programmers. It is actually very simple. I wrote it here to share with you. Many people say that I have set the div to 100%, but it still has no effect. What I want to say is that there is a key thing that you did not set.

Copy code
The code is as follows:

html,body{height:100%;overflow:hidden;}

Haha, now you get it, you need to set them at the same time.

<<:  CSS3+Bezier curve to achieve scalable input search box effect

>>:  vue-admin-template dynamic routing implementation example

Recommend

Detailed explanation of redo log and undo log in MySQL

The most important logs in the MySQL log system a...

Vue3+el-table realizes row and column conversion

Table of contents Row-Column Conversion Analyze t...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

Image scrolling effect made with CSS3

Achieve resultsImplementation Code html <base ...

JavaScript functional programming basics

Table of contents 1. Introduction 2. What is func...

Solve the problem after adding --subnet to Docker network Create

After adding –subnet to Docker network Create, us...

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

jQuery implements simple pop-up window effect

This article shares the specific code of jQuery t...

What to do if the online MySQL auto-increment ID is exhausted

Table of contents Table definition auto-increment...

HTML+VUE paging to achieve cool IoT large screen function

Effect demo.html <html> <head> <me...

Detailed explanation of the usage of 5 different values ​​of CSS position

The position property The position property speci...

View MySQL installation information under Linux server

View the installation information of mysql: #ps -...

Detailed explanation based on event bubbling, event capture and event delegation

Event bubbling, event capturing, and event delega...

Detailed explanation of Nodejs array queue and forEach application

This article mainly records the problems and solu...