What is the difference between the W3C box model and the IE box model?

王林
Release: 2020-06-30 17:46:37
forward
2880 people have browsed it

What is the difference between the W3C box model and the IE box model?

Let’s take a look at their differences through examples:

(Recommended learning: css Quick Start)

a The box model is as follows: margin: 20px, border: 10px, padding: 10px; width: 200px; height: 50px;

Now calculate the width and height of the box under the two box models.

W3C standard box:

The width and height of the space occupied by the box: (space occupied by the browser page)

Width = 200 10*2 10*2 20*2 = 280 px;

Height = 50 10*2 10*2 20*2 = 130 px;

Actual width and height of the box:

Width = 200 10*2 10*2 = 240 px;

Height = 50 10*2 10*2 = 90 px;

IE box:

The width and height of the space occupied by the box: (space occupied by the browser page)

Width = 200 20*2 = 240 px;

Height = 50 20*2 = 90 px;

Actual width and height of the box:

Width = 200 px;

Height = 50 px;

It can be seen from the data that under the same data, The border-box is smaller than the content-box.

display effect:

What is the difference between the W3C box model and the IE box model?

The above is the detailed content of What is the difference between the W3C box model and the IE box model?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template