


[Learn one CSS3 property a day] One: box-sizing_html/css_WEB-ITnose
box-sizing is used to change the CSS box model, thereby changing the way the element width and height are calculated.
The value of box-sizing is as follows:
box-sizing: content-box | padding-box | border-box
The default value is content-box , which corresponds to the standard box model calculation method in the CSS2.1 specification , that is, width and height are the width and height of the content area, excluding borders, inner margins, and outer margins;
padding-box According to MDN, it is still an experimental attribute at present, and width and height include Content area and padding, excluding borders and margins;
border-box includes padding and borders, excluding margins. This is the box model used by IE Quirks mode.
Example (excerpted from MDN)
1 /* support Firefox, WebKit, Opera and IE8+ */2 3 .example {4 -moz-box-sizing: border-box;5 box-sizing: border-box;6 }
Impact on JS
According to MDN:
Box-sizing will not be considered when getting height by window.getComputedStyle, at least this is the case in Firefox 18 (bug 520992) and Internet Explorer 9, but not in Chrome 24 (other browsers have not been tested). Note that IE9 currentStyle cannot return the correct height value.
I have not tested Firefox 18 and IE9 and later versions.
About the return values of .width() and .height() in jQuery
JQuery 1.8 has added support for box-sizing, but this also depends on whether the browser supports box- Regarding sizing, in short, after version 1.8, .width() and .height() will always return the width and height of the content area, see the following code:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"/> <style type="text/css"> #container { -moz-box-sizing: border-box; box-sizing: border-box; width: 500px; padding: 5px; border: 5px solid gold; } </style> <script src="js/jquery-1.8.0.js"></script> </head> <body> <div id="container"></div> <script> var $el = $('#container') var w = $el.width(); console.log(w) </script> </body> </html>
The printing results of each browser are as follows
IE6/7 does not support box-sizing. The width of the content area is 500, so the output value is also 500. For other browsers that support this attribute, the width of the content area is minus padding and The value of border has become 480.
Another: The .outerWidth() and .outerHeight() methods in jquery are not affected.

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The article discusses the HTML <datalist> element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

The article discusses the <iframe> tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

The article discusses the HTML <progress> element, its purpose, styling, and differences from the <meter> element. The main focus is on using <progress> for task completion and <meter> for stati

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

The article discusses the HTML <meter> element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates <meter> from <progress> and ex

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

This article explains the HTML5 <time> element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit
