--- title: '-moz-float-edge' slug: Web/CSS/-moz-float-edge tags: - CSS - CSS Eigenschaft - 'CSS:Mozilla Erweiterungen' - Layout - NeedsCompatTable - NeedsLiveSample - Non-standard translation_of: Web/CSS/-moz-float-edge ---
Die nicht standardisierte -moz-float-edge
CSS Eigenschaft gibt an, ob die Höhen- und Breiteneigenschaften des Elements die Dicke des Außenabstands, des Rands oder des Innenabstands beinhalten.
{{cssinfo}}
/* Schlüsselwortwerte */ -moz-float-edge: border-box; -moz-float-edge: content-box; -moz-float-edge: margin-box; -moz-float-edge: padding-box; /* Globale Werte */ -moz-float-edge: inherit; -moz-float-edge: initial; -moz-float-edge: unset;
border-box
content-box
margin-box
padding-box
{{csssyntax}}
hr { display: block; height: 2px; border: 1px inset; margin: 0.5em auto 0.5em auto; color: gray; -moz-float-edge: margin-box; box-sizing: border-box; }
{{bug(432891)}}