Preface This article introduces how to use the new CSS3 attribute box-sizing to solve the problem of setting the div width to 100% and then setting padding or margin beyond the parent element. Friends in need can refer to it. grammar box-sizing: content-box|border-box|inherit; Value 1, content-box This is the width and height behavior specified by CSS2.1. The width and height are applied to the element's content box respectively. The element's padding and border are drawn in addition to the width and height. Value 2, border-box The width and height specified for an element determine the element's border box. That is, any padding and borders specified for the element will be drawn within the specified width and height. The content width and height are obtained by subtracting the border and padding from the set width and height respectively. Value 3: inherit Specifies that the value of the box-sizing property should be inherited from the parent element. example <!DOCTYPE html> <html> <head> <style> div.container { width:100%; border:1em solid; padding:15px; box-sizing:border-box; } div.box { box-sizing:border-box; -moz-box-sizing:border-box; /* Firefox */ -webkit-box-sizing:border-box; /* Safari */ width:100%; border:1em solid red; float:left; padding:15px; } </style> </head> <body> <div class="container"> <div class="box">This div occupies the left half. </div> </div> </body> </html> Summarize The above is the full content of this article. I hope that the content of this article can be of some help to your study or work. If you have any questions, you can leave a message to communicate. |
<<: Node+Express test server performance
This article mainly introduces how to implement l...
When we learn HTML, the image tag <img> int...
1. Download the download link Click download. You...
This article uses an example to illustrate the us...
The decompressed version of MYSQL is installed 1:...
Table of contents Preface How does antd encapsula...
Record the problems you solve for others. Problem...
MySQL5.7.21 installation and password setting tut...
In the process of designing a web page, designers...
Table of contents 1. Email 2. Mobile phone number...
Preface Normal business needs: upload pictures, E...
Table of contents Preface 1. Recursive components...
This tutorial shares the installation and configu...
The most important interactive design article in ...
The project needs to use MySQL. Since I had alway...