--- title: '-moz-float-edge' slug: Web/CSS/-moz-float-edge tags: - CSS - 'CSS: Extensión Mozilla' - Diseño - No estandar - Propiedad CSS translation_of: Web/CSS/-moz-float-edge ---
La propiedad CSS no estándar -moz-float-edge
especifica si las propiedades altura y anchura del elemento incluyen el margen, el borde o el espesor del padding (relleno)
{{cssinfo}}
/* Palabras clave valor */ -moz-float-edge: border-box; -moz-float-edge: content-box; -moz-float-edge: margin-box; -moz-float-edge: padding-box; /* Valores globales */ -moz-float-edge: inherit; -moz-float-edge: initial; -moz-float-edge: unset;
border-box
content-box
margin-box
padding-box
<div class="box"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p> </div>
.box {
display: block;
height: 5px;
margin: 0.5em auto 0.5em auto;
color: gray;
-moz-float-edge: margin-box;
box-sizing: border-box;
}
{{ EmbedLiveSample('Example', '', '', '', 'Web/CSS/-moz-float-edge') }}
{{bug(432891)}}