Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

Revision 137548 of -moz-box-sizing

  • Revision slug: CSS/-moz-box-sizing
  • Revision title: -moz-box-sizing
  • Revision id: 137548
  • Created:
  • Creator: j.j.
  • Is current revision? No
  • Comment 48 words added

Revision Content

{{ CSSMozExtensionRef() }}

Summary

-moz-box-sizing is used by mozilla browsers to alter the default CSS box model used to calculate widths and heights of elements. It is possible to use this property to allow mozilla to emulate the behavior of browsers that do not correctly support the CSS box model specification, though this is not recommended as most standards-compliant browsers do not support this property.

  • {{ Xref_cssinitial() }}: {{ Cssxref("content-box") }}
  • Applies to: all elements
  • {{ Xref_cssinherited() }}: no
  • Percentages: n/a
  • Media: {{ Xref_cssvisual() }}
  • {{ Xref_csscomputed() }}: as specified

Syntax

-moz-box-sizing: content-box | border-box | padding-box 

Values

content-box
This is the default style as specified by the CSS standard. The width and height properties are measured including only the content, but not the border, margin, or padding.
padding-box
The width and height properties include the padding size, and do not include the border or margin.
border-box
The width and height properties include the padding and border, but not the margin. This is the box model used by Internet Explorer when the document is not in Standards-compliant mode .

Examples

.exampleone {
	-moz-box-sizing: padding-box;
}

Browser compatibility

 

Browser Lowest Version
Internet Explorer 8.0beta -ms-box-sizing
Firefox 1.0 -moz-box-sizing
Opera 7.0 box-sizing
Safari 3.0 -webkit-box-sizing

Opera and Safari don't support the value padding-box.

{{ languages( { "fr": "fr/CSS/-moz-box-sizing", "pl": "pl/CSS/-moz-box-sizing" } ) }}

Revision Source

<p>{{ CSSMozExtensionRef() }}</p>
<h3 name="Summary">Summary</h3>
<p><code>-moz-box-sizing</code> is used by mozilla browsers to alter the default CSS box model used to calculate widths and heights of elements. It is possible to use this property to allow mozilla to emulate the behavior of browsers that do not correctly support the CSS box model specification, though this is not recommended as most standards-compliant browsers do not support this property.</p>
<ul> <li>{{ Xref_cssinitial() }}: {{ Cssxref("content-box") }}</li> <li>Applies to: all elements</li> <li>{{ Xref_cssinherited() }}: no</li> <li>Percentages: n/a</li> <li>Media: {{ Xref_cssvisual() }}</li> <li>{{ Xref_csscomputed() }}: as specified</li>
</ul>
<h3 name="Syntax">Syntax</h3>
<pre class="eval">-moz-box-sizing: content-box | border-box | padding-box 
</pre>
<h3 name="Values">Values</h3>
<dl><dt> content-box</dt><dd> This is the default style as specified by the CSS standard. The width and height properties are measured including only the content, but not the border, margin, or padding. </dd><dt> padding-box</dt><dd> The width and height properties include the padding size, and do not include the border or margin. </dd><dt> border-box</dt><dd> The width and height properties include the padding and border, but not the margin. This is the box model used by Internet Explorer when the document is not in Standards-compliant mode <a class="external" href="https://msdn.microsoft.com/library/default.asp?url=/library/en-us/dhtmltechcol/dndhtml/cssenhancements.asp"></a>. </dd></dl>
<h3 name="Examples">Examples</h3>
<pre>.exampleone {
	-moz-box-sizing: padding-box;
}
</pre>
<h3 name="Browser_compatibility">Browser compatibility</h3>
<p> </p>
<table class="standard-table"> <tbody> <tr> <th>Browser</th> <th>Lowest Version</th> </tr> <tr> <td>Internet Explorer</td> <td>8.0beta <code>-ms-box-sizing</code></td> </tr> <tr> <td>Firefox</td> <td>1.0<code> -moz-box-sizing</code></td> </tr> <tr> <td>Opera</td> <td>7.0<code> box-sizing</code></td> </tr> <tr> <td>Safari</td> <td>3.0<code> -webkit-box-sizing</code></td> </tr> </tbody>
</table>
<p>Opera and Safari don't support the value<code> padding-box.</code></p>
<p>{{ languages( { "fr": "fr/CSS/-moz-box-sizing", "pl": "pl/CSS/-moz-box-sizing" } ) }}</p>
Revert to this revision