You are here : cssCSS 3border-image-repeat

border-image-repeat - CSS 3

The border-image-repeat property specifies whether the border image should be repeated, rounded or stretched.Tip: Also look at the border-image property 
(a shorthand property for setting all the border-image-* properties).


Syntax

border-image-repeat: stretch|repeat|round|initial|inherit;


Example

#borderimg
	{
	   
	border-image-source: url(border.png);
	   
	border-image-repeat: repeat;
	}


Output / Return Value


Limitations


Alternatives / See Also


Reference