Home >Web Front-end >HTML Tutorial >What is the reason for a lot of white space at the bottom of the html page?

Foreword:
I accidentally discovered that a large blank area appeared at the bottom of the html page, so the following analysis process was carried out.
The problem is as shown in the picture below:

After reviewing the code, the height of the body is not that high, indicating that it is an html problem

Solution:
Add the following code to ccs
html{
height:100%;
}
Related recommendations: html tutorial
The above is the detailed content of What is the reason for a lot of white space at the bottom of the html page?. For more information, please follow other related articles on the PHP Chinese website!