--- title: border-inline-end-width slug: Web/CSS/border-inline-end-width translation_of: Web/CSS/border-inline-end-width ---
La propiedad de CSS border-inline-end-width CSS property defines the width of the logical inline-end border of an element, que se asigna al estilo de borde físico dependiendo del modo de escritura, la direccionalidad y la orientación del texto del elemento. Esto corresponde a las propiedades {{cssxref("border-top-width")}} y {{cssxref("border-bottom-width")}}, o {{cssxref("border-left-width")}}, y {{cssxref("border-right-width")}} dependiendo de los valores definidos por {{cssxref("writing-mode")}}, {{cssxref("direction")}}, y {{cssxref("text-orientation")}}.
/* <'border-width'> values */ border-inline-end-width: 2px; border-inline-end-width: thick;
Propiedades relacionadas son {{cssxref("border-block-start-width")}}, {{cssxref("border-block-end-width")}}, and {{cssxref("border-inline-start-width")}}, que definen los otros anchos del borde del elemento.
{{cssinfo}}
<'border-width'><div> <p class="exampleText">Example text</p> </div>
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
border: 1px solid blue;
border-inline-end-width: 5px;
}
{{EmbedLiveSample("Ejemplo", 140, 140)}}
| Especificación | Estado | Comentario |
|---|---|---|
| {{SpecName("CSS Logical Properties", "#propdef-border-inline-end-width", "border-inline-end-width")}} | {{Spec2("CSS Logical Properties")}} | Definición inicial. |
{{Compat("css.properties.border-inline-end-width")}}