--- title: border-inline-end-style slug: Web/CSS/border-inline-end-style translation_of: Web/CSS/border-inline-end-style ---
{{CSSRef}}{{SeeCompatTable}}

La propiedad de CSS  border-inline-end-style CSS property defines the style 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-style")}} y {{cssxref("border-bottom-style")}}, o {{cssxref("border-left-style")}}, y {{cssxref("border-right-style")}} dependiendo de los valores definidos por {{cssxref("writing-mode")}}, {{cssxref("direction")}}, y {{cssxref("text-orientation")}}.

{{EmbedInteractiveExample("pages/css/border-inline-end-style.html")}}

Sintaxis

/* <'border-style'> values */
border-inline-end-style: dashed;
border-inline-end-style: dotted;
border-inline-end-style: groove;

Propiedades relacionadas son {{cssxref("border-block-start-style")}}, {{cssxref("border-block-end-style")}}, and {{cssxref("border-inline-start-style")}}, que definen los otros estilos del borde del elemento.

{{cssinfo}}

Valores

<'border-style'>
La línea de estilo del borde. Mira {{ cssxref("border-style") }}.

Sintaxis formal

{{csssyntax}}

Ejemplo

Contenido HTML

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

Contenido CSS

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

.exampleText {
  writing-mode: vertical-lr;
  border: 5px solid blue;
  border-inline-end-style: dashed;
}

{{EmbedLiveSample("Ejemplo", 140, 140)}}

Especificación

Especificación Estado Comentario
{{SpecName("CSS Logical Properties", "#propdef-border-inline-end-style", "border-inline-end-style")}} {{Spec2("CSS Logical Properties")}} Definición inicial.

Compatibilidad en navegadores

{{Compat("css.properties.border-inline-end-style")}}

Mira también