CSS

CSS Intro

CSS Intro Quiz

CSS Intro Exercise

CSS Basic

CSS Basic Quiz

CSS Basic Exercise

CSS Advance

CSS Advance Quiz

CSS Advance Exercise

CSS3

CSS3 Quiz

CSS3 Exercise

CSS Properties

CSS Functions

CSS Selectors

CSS border image repeat Property

CSS border-image-repeat Property

 

 

The border-image-repeat property is used to determine whether the border-image should be repeated, rounded, spaced, or stretched.

 

Default Value:-

 

Its default value is stretch.

 

Syntax:-

 

Its syntax is:- border-image-repeat: stretch | repeat | round | space | initial | inherit;

 

Further Explanation:-

 

Value Description
stretch The image is stretched to fill the area
repeat The image is repeated (tiled) to fill the area
round The image is repeated (tiled) to fill the area. The image is rescaled so it fits if it does not fill the area with a whole number of tiles,
space The image is repeated (tiled) 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
initial Sets this property to its default value.
inherit Inherits this property from its parent element.

Code Explanation

All Tutorials related to CSS Properties

All Sections related to CSS