--- title: border-image slug: Web/CSS/border-image tags: - CSS - CSS Borders - CSS Property - Reference - border-image translation_of: Web/CSS/border-image ---
border-image
CSS属性允许在元素的边框上绘制图像。这使得绘制复杂的外观组件更加简单,也不用在某些情况下使用九宫格了。使用 border-image 时,其将会替换掉
{{cssxref("border-style")}} 属性所设置的边框样式。虽然规范要求使用 border-image 时
边框样式必须存在,但一些浏览器可能没有实现这一点。
特别注意,若 {{cssxref("border-image-source")}}(此值可用border-image-source或border-image简写设置) 的值为 none 或者图片不能显示,则将应用 border-style。
{{cssinfo}}
/* border-image: image-source image-height image-width image-repeat */ border-image: url("/images/border.png") 30 30 repeat; border-image: url("/images/border.png") 30 30 stretch;
参考各属性对应的值。
<div id="bitmap">The image is stretched to fill the area.</div>
#bitmap { border: 30px solid transparent; padding: 20px; border-image: url("https://mdn.mozillademos.org/files/4127/border.png") 30; }
{{ EmbedLiveSample('位图') }}
<div id="gradient">The image is stretched to fill the area.</div>
#gradient { border: 30px solid; border-image: linear-gradient(red, yellow) 10; padding: 20px; }
{{ EmbedLiveSample('渐变') }}
规范 | 状态 | 备注 |
---|---|---|
{{SpecName('CSS3 Backgrounds', '#border-image', 'border-image')}} | {{Spec2('CSS3 Backgrounds')}} |