CSS Reference

Quick Reference

The border-image-repeat property specifies whether the border image should be repeated, rounded, spaced or stretched.

div {
    border-image-source: url(border_image.jpg);
    border-image-repeat: repeat;
}

Default

Default valuestretch
Inherited valuesno
Can it be animated?no

These are the allowed values.

ValueDescription
stretchThe image is stretched to fill the area (default)
repeatThe image is tiled (repeated) to fill the area
roundThe image is tiled (repeated) to fill the area; if it doesn't fill the area with a whole number of tiles, the image is rescaled so that it fits
spaceThe image is tiled (repeated) to fill the area; if it does not fill the area with a whole number of tiles, the extra space is distributed around the tiles
initialSets this property to its default value
inheritInherits this property from its parent element

Using JavaScript

The HTML element can also be styled using JavaScript and the element’s id.

document.getElementById('my_div').style.borderImageRepeat = 'repeat';
<button onclick='my_function()'>Click Here</button>

<script>
function my_function() {
    document.getElementById('my_div').style.borderImageRepeat = 'repeat';
}
</script>

CSS Notes:


We’d like to acknowledge that we learned a great deal of our coding from W3Schools and TutorialsPoint, borrowing heavily from their teaching process and excellent code examples. We highly recommend both sites to deepen your experience, and further your coding journey. We’re just hitting the basics here at 1SMARTchicken.