margin-inline-end

Experimental: Esta es una tecnología experimental
Comprueba la Tabla de compabilidad de navegadores cuidadosamente antes de usarla en producción.

La propiedad de CSS margin-inline-end define el margen final lógico en línea de un elemento, que se asigna a un margen físico en función del modo de escritura, la direccionalidad y la orientación del texto del elemento. En otras palabras, corresponde a las propiedades margin-top (en-US), margin-right, margin-bottom o margin-left (en-US) dependiendo de los valores definidos por writing-mode, direction, y text-orientation.

Pruébalo

Sintaxis

css
/* <length> values */
margin-inline-end: 10px; /* An absolute length */
margin-inline-end: 1em; /* relative to the text size */
margin-inline-end: 5%; /* relative to the nearest block container's width */

/* Keyword values */
margin-inline-end: auto;

/* Global values */
margin-inline-end: inherit;
margin-inline-end: initial;
margin-inline-end: unset;

Se relaciona con margin-block-start, margin-block-end (en-US), and margin-inline-start, que define las otras márgenes del elemento.

Valor inicial0
Applies tosame as margin
Heredableno
Percentagesdepends on layout model
Valor calculadoif specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto
Animation typea length

Valores

La propiedad margin-inline-end toma los mismos valores de la propiedad margin-left (en-US).

Sintaxis formal

margin-inline-end = 
<'margin-top'>

Ejemplo

Contenido HTML

html
<div>
  <p class="exampleText">Example text</p>
</div>

Contenido CSS

css
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-lr;
  margin-inline-end: 20px;
  background-color: #c8c800;
}

Especificaciones

Specification
CSS Logical Properties and Values Level 1
# margin-properties

Compatibilidad con navegadores

BCD tables only load in the browser

Mira también