border-image-repeat
Important |
|---|
|
This documentation is preliminary and subject to change. |
Sets how a border image is scaled and repeated.
Syntax
{ border-image-repeat:
sRepeat
}
Possible values
sRepeat
String that specifies one of the following values
|
stretch |
The image is stretched to fill the area. |
|
repeat |
The image is repeated to fill the area |
|
round |
The image is repeated to fill the area. If the area is a non-integer multiple of the image, the image is rescaled to fit. |
|
space |
The image is repeated to fill the area. If the area is a non-integer multiple of the image, space is inserted between repeated instances of the image to fill the remainder. |
This property has a default value of stretch. It is not inherited.
Standards information
This property is defined in CSS Backgrounds and Borders Module Level 3
.
Applies to
a, address, b, big, blockquote, body, button, caption, center, cite, code, col, colgroup, custom, dd, defaults, dfn, div, dl, dt, em, fieldset, form, hn, html, i, img, input type=button, input type=checkbox, input type=file, input type=image, input type=password, input type=radio, input type=reset, input type=submit, input type=text, li, ol, p, s, span, sub, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, var, xmp
Important