border-image-source
Baseline
Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Thuộc tính border-image-source CSS đặt hình ảnh nguồn được sử dụng để tạo hình ảnh đường viền của phần tử.
Thuộc tính border-image-slice được sử dụng để chia hình ảnh nguồn thành các vùng, sau đó được áp dụng động vào hình ảnh đường viền cuối cùng.
Try it
border-image-source: url("/shared-assets/images/examples/border-diamonds.png");
border-image-source: url("/shared-assets/images/examples/border-stars.png");
border-image-source: repeating-linear-gradient(
45deg,
transparent,
#4d9f0c 20px
);
border-image-source: none;
<section id="default-example">
<div id="example-element">This is a box with a border around it.</div>
</section>
#example-element {
width: 80%;
height: 80%;
display: flex;
align-items: center;
justify-content: center;
padding: 50px;
background: #fff3d4;
color: black;
border: 30px solid;
border-image: url("/shared-assets/images/examples/border-diamonds.png") 30
round;
font-size: 1.2em;
}
Cú pháp
css
/* Giá trị từ khóa */
border-image-source: none;
/* Giá trị <image> */
border-image-source: url("image.jpg");
border-image-source: linear-gradient(to top, red, yellow);
/* Giá trị toàn cục */
border-image-source: inherit;
border-image-source: initial;
border-image-source: revert;
border-image-source: revert-layer;
border-image-source: unset;
Giá trị
none-
Không sử dụng hình ảnh đường viền. Thay vào đó, giao diện được xác định bởi
border-stylesẽ được hiển thị. <image>-
Tham chiếu hình ảnh để sử dụng cho đường viền.
Định nghĩa hình thức
| Initial value | none |
|---|---|
| Applies to | all elements, except internal table elements when border-collapse is collapse. It also applies to ::first-letter. |
| Inherited | no |
| Computed value | none or the image with its URI made absolute |
| Animation type | discrete |
Cú pháp hình thức
border-image-source =
none |
<image>
<image> =
<url> |
<image()> |
<image-set()> |
<cross-fade()> |
<element()> |
<gradient>
<image()> =
image( <image-tags>? [ <image-src>? , <color>? ]! )
<image-set()> =
image-set( <image-set-option># )
<cross-fade()> =
cross-fade( <cf-image># )
<element()> =
element( <id-selector> )
<image-tags> =
ltr |
rtl
<image-src> =
<url> |
<string>
<image-set-option> =
[ <image> | <string> ] [ <resolution> || type( <string> ) ]?
<cf-image> =
[ <image> | <color> ] &&
<percentage [0,100]>?
<id-selector> =
<hash-token>
Ví dụ
>Ví dụ cơ bản
css
.box {
border-image-source: url("image.png");
}
Thông số kỹ thuật
| Specification |
|---|
| CSS Backgrounds and Borders Module Level 3> # border-image-source> |
Tương thích trình duyệt
Xem thêm
borderoutlinebox-shadowbackground-image<url>type- Border images in CSS: A key focus area for Interop 2023 trên blog MDN (2023)