border-image-outset
CSS 的 `border-image-outset` 属性设置元素的 `border-image
` 区域与其超出元素 `border-box` 的距离。
.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;
border-image-outset: 2;
}
…