border-image-width
The CSS border-image-width
property is used to determine the width of the border’s image file, as provided by the CSS border-image-source
property.
.container {
border-style: ridge;
border-width: 3rem;
border-image-source: url('path/to/image.jpg');
border-image-slice: 70;
border-image-width: 40%;
border-image-repeat: repeat;
}
…