A brief introduction to the two models in the CSS box model

不言
Release: 2018-08-13 17:04:58
Original
2542 people have browsed it

This article brings you a brief introduction to the two models in the CSS box model. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

Basic concept

There are two standards for the box model, one is the standard model and the other is the IE model.

In the standard model, the width and height of the box model are only the width and height of the content.

The width and height of the box model in the IE model are The total width and height of content, padding, and border

How to set two models in css

     /* 标准模型 */
     box-sizing:content-box;

     /*IE模型*/
     box-sizing:border-box;
Copy after login

Related recommendations:

Introduction to the four properties of positioning in CSS

What are the properties of css flex layout (elastic layout)? Introduction to css flex layout properties

The above is the detailed content of A brief introduction to the two models in the CSS box model. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
css
source:php.cn
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