的边框图像属性CSS中的ins用于指定图像的边框。此属性使用图像而不是普通边框创建边框。该属性包含以下三部分:
- 完整图像用作边框。
- 图像切片用作边框
- 图像的中间部分(重复或拉伸)用作边框
语法如下:
element {border-image: url(border.png);
}
【CSS 边框图片用法示例】边框图像属性:下面列出了许多border-image属性:
- border-image-source:此属性用于设置图像路径。
- 边框图像宽度:此属性用于设置边界图像的宽度。
- 边框图像切片:此属性用于切片图像的边界。
- 边框图像重复:此属性用于将图像的边界设置为圆形, 重复和拉伸。
- 边框图像起点:此属性用于指定边框图像区域超出边框的数量。
<
!DOCTYPE html>
<
html >
<
head >
<
title >
CSS | Border Images
<
/ title >
<
style >
body {
text-align:center;
}
h1 {
color:green;
}
.border1 {
border: 10px solid transparent;
padding: 15px;
border-image-source: url(
https://media.lsbin.org/wp-content/uploads/border1-2.png);
border-image-repeat: round;
border-image-slice: 30;
border-image-width: 20px;
}
.border2 {
border: 10px solid transparent;
padding: 15px;
border-image: url(
https://media.lsbin.org/wp-content/uploads/border1-2.png)
30 stretch;
}
.border3 {
border: 10px solid transparent;
padding: 15px;
border-image: url(
https://media.lsbin.org/wp-content/uploads/border1-2.png)
20% round;
}
div {
margin-top:20px;
}
<
/ style >
<
/ head >
<
body >
<
h1 >
lsbin<
/ h1 >
<
h2 >
border-image property<
/ h2 >
<
div class = "border1" >
Border 1<
/ div >
<
div class = "border2" >
Border 2<
/ div >
<
div class = "border3" >
Border 3<
/ div >
<
/ body >
<
/ html >
输出如下:
文章图片
支持的浏览器:支持的浏览器边框图像属性下面列出:
- 谷歌浏览器16.0
- Internet Explorer 11.0
- Firefox 15.0
- 歌剧15.0
- 的Safari 6.0
推荐阅读
- 面向对象编程(Perl OOP中的类)
- 真人快打仍然是一部完美的电子游戏电影的3个简单原因
- 2021年电子游戏发布时间表预告
- 关于Kena的20个问题(和答案)(精神之桥)
- 完全改变了我们最喜欢的系列的10种游戏机制
- jQuery 多元素选择器用法介绍
- R编程中的随机森林法详细指南
- AngularJS orderBy过滤用法示例
- C++中的max_element用法详解