border-image - CSS(层叠样式表) 编辑
border-image
CSS属性允许在元素的边框上绘制图像。这使得绘制复杂的外观组件更加简单,也不用在某些情况下使用九宫格了。使用 border-image 时,其将会替换掉
border-style
属性所设置的边框样式。虽然规范要求使用 border-image 时
边框样式必须存在,但一些浏览器可能没有实现这一点。
特别注意,若 border-image-source
(此值可用border-image-source或border-image简写设置) 的值为 none 或者图片不能显示,则将应用 border-style。
初始值 | as each of the properties of the shorthand:
|
---|---|
适用元素 | all elements, except internal table elements when border-collapse is collapse . It also applies to ::first-letter . |
是否是继承属性 | 否 |
Percentages | as each of the properties of the shorthand:
|
计算值 | as each of the properties of the shorthand:
|
Animation type | discrete |
语法
/* 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;
值
参考各属性对应的值。
正式语法
<'border-image-source'> || <'border-image-slice'> [ / <'border-image-width'> | / <'border-image-width'>? / <'border-image-outset'> ]? || <'border-image-repeat'>
示例
位图
HTML 内容
<div id="bitmap">The image is stretched to fill the area.</div>
CSS 内容
#bitmap {
border: 30px solid transparent;
padding: 20px;
border-image: url("https://www.wenjiangs.com/wp-content/uploads/2020/mozilla/border.png") 30;
}
渐变
HTML 内容
<div id="gradient">The image is stretched to fill the area.</div>
CSS 内容
#gradient {
border: 30px solid;
border-image: linear-gradient(red, yellow) 10;
padding: 20px;
}
规范
规范 | 状态 | 备注 |
---|---|---|
CSS Backgrounds and Borders Module Level 3 border-image | Candidate Recommendation |
浏览器兼容性
BCD tables only load in the browser
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论