--- title: border-start-end-radius slug: Web/CSS/border-start-end-radius translation_of: Web/CSS/border-start-end-radius ---
{{CSSRef}}{{SeeCompatTable}}
La propiedad de CSS border-start-end-radius
define al radio del borde lógico de un elemento, que se asigna al radio 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("writing-mode")}}, {{cssxref("direction")}}, and {{cssxref("text-orientation")}}.
/* <length> values */ /* With one value the corner will be a circle */ border-start-end-radius: 10px; border-start-end-radius: 1em; /* With two values the corner will be an ellipse */ border-start-end-radius: 1em 2em; /* Global values */ border-start-end-radius: inherit; border-start-end-radius: initial; border-start-end-radius: unset;
Por ejemplo, en un modo de escritura horizontal-tb
, esta propiedad corresponde a la propiedad {{CSSxRef("border-bottom-left-radius")}}.
<length-percentage>
<div> <p class="exampleText">Example</p> </div>
div { background-color: rebeccapurple; width: 120px; height: 120px; border-start-end-radius: 10px; } .exampleText { writing-mode: vertical-rl; padding: 10px; background-color: #fff; border-start-end-radius: 10px; }
{{EmbedLiveSample("Ejemplo", 140, 140)}}
Especificación | Estado | Comentario |
---|---|---|
{{SpecName("CSS Logical Properties", "#propdef-border-start-end-radius", "border-start-end-radius")}} | {{Spec2("CSS Logical Properties")}} | Definición inicial. |
{{CSSInfo}}
{{Compat("css.properties.border-start-end-radius")}}