When we make a web page, we must pay attention to several points to make our web page beautiful and smooth. So what should we do if the CSS web page is misaligned? Next, we will bring you how to deal with web page misalignment and how to prevent it.
Why calculate the width
Calculating the pixel width of the web page is for the neat and compatible layout of the CSS web page. It is common for us to calculate the width of the entire page when we lay out the left and right structural web pages or usepadding,marginlayout. If we do not calculate the width, no matter whether the width is too large or too small, misalignment problems will occur.
How to calculate CSS width
Example 1: We calculate the layout style of a left and right structure.
If the total width is 400px, then the sum of the left and right should be less than 400px, then we may have 300px on the left and 100px on the right
Correct code:
Dislocation of the web page CSS width calculation
The above is the correct total width of the left and right structures, which is exactly equal to 400px
Error:
If we keep the total width unchanged, the left side is 300px, and the right side is 300px If it is 120px, then the total width exceeds 20px. Let’s see what problems will occur. The DIV+CSS code is as follows: