--- title: border-image-repeat slug: Web/CSS/border-image-repeat tags: - Bordes CSS - CSS - Propiedades CSS - Referencia translation_of: Web/CSS/border-image-repeat ---
La propiedad CSS border-image-repeat
define cómo se manejará la parte media de una imagen de borde para que coincida con el tamaño del borde. Tiene sintaxis de un valor, el cual describe el comportamiento de todos los lados, y otra sintaxis de dos valores, que establece diferentes valores para el comportamiento horizontal y vertical.
/* border-image-repeat: type */ border-image-repeat: stretch; /* border-image-repeat: horizontal vertical */ border-image-repeat: round stretch; /* Global values */ border-image-repeat: inherit; border-image-repeat: initial; border-image-repeat: unset;
stretch
, repeat
, o round
, que denotan cómo será tratada la imagen vertical y horizontalmente.stretch
, repeat
, o round
, denotando cómo será tratada la imagen horizontalmente.stretch
, repeat
, o round
, denotando cómo será tratada la imagen verticalmente.stretch
repeat
round
space
#borderImageRepetition { width: 260px; height: 80px; margin-bottom: 10px; border: 30px solid; border-image: url("https://mdn.mozillademos.org/files/4127/border.png") 27; border-image-repeat: stretch; /* Puede ser modificado en el ejemplo en vivo */ }
<div id="borderImageRepetition"> </div> <select id="repetition"> <option value="stretch">stretch</option> <option value="repeat">repeat</option> <option value="round">round</option> <option value="space">space</option> <option value="stretch repeat">stretch repeat</option> <option value="space round">space round</option> </select>
var repetition = document.getElementById("repetition"); repetition.addEventListener("change", function (evt) { document.getElementById("borderImageRepetition").style.borderImageRepeat = evt.target.value; });
{{EmbedLiveSample("Example", "330px", "180px")}}
Especificación | Estatus | Comentarios |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#border-image-repeat', 'border-image-repeat')}} | {{Spec2('CSS3 Backgrounds')}} | Definición inicial |