margin-inline-end
Baseline Widely available *
This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.
* Some parts of this feature may have varying levels of support.
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
, margin-right
, margin-bottom
o margin-left
dependiendo de los valores definidos por writing-mode
, direction
, y text-orientation
.
Pruébalo
margin-inline-end: 20px;
writing-mode: horizontal-tb;
margin-inline-end: 20px;
writing-mode: vertical-rl;
margin-inline-end: 20%;
writing-mode: horizontal-tb;
direction: rtl;
One
Two
Three
#container {
width: 300px;
height: 200px;
display: flex;
align-content: flex-start;
justify-content: flex-start;
}
.col {
width: 33.33%;
border: solid #ce7777 10px;
background-color: #2b3a55;
color: white;
flex-shrink: 0;
}
#example-element {
border: solid 10px #ffbf00;
background-color: #2b3a55;
unicode-bidi: bidi-override;
}
Sintaxis
/* 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
, and margin-inline-start
, que define las otras márgenes del elemento.
Valor inicial | 0 |
---|---|
Applies to | same as margin |
Heredable | no |
Percentages | depends on layout model |
Valor calculado | if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto |
Animation type | a length |
Valores
La propiedad margin-inline-end
toma los mismos valores de la propiedad margin-left
.
Sintaxis formal
Ejemplo
Contenido HTML
Example text
Contenido 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
Mira también
margin-inline-start
- Las propiedades físicas mapeadas:
margin-top
,margin-right
,margin-bottom
, ymargin-left
writing-mode
,direction
,text-orientation