3.3 CSS3图片边框属性
border-image
效果在CSS2中,只有使用背景图片来制作,而且制作过程非常复杂,做完后也很难维护。如今CSS3中增添了一个图片边框的属性,能够模拟出background-image
属性的功能,功能比background-image
强大,我们可以使用border-image
属性给任何元素(除border-collapse
属性值为collapse
的table
元素之外)设置图片效果边框。
3.3.1 border-image
属性的语法及参数
border-image : none | <image> [<number> | <percentage>] {1, 4} [/ <border-width>] {1, 4} ] ? [stretch | repeat | round] {0, 2}
none
:默认值,表示边框无背景图片。<image>
:设置背景图片,这跟background-image
一样,可以使用绝对或相对的URL地址,来指定边框的背景图片。<number>
:number
是一个数值,用来设置边框或者边框背景图片的大小,其单位就是像素(px),可以使用 1~4 个值,表示4个方位的值,可以参考border-width
的设置方式<percentage>
:percentage
也是用来设置边框或者边框背景图片的大小,跟number
不同之处是,percentage
使用的是百分比。stretch、repeat、round
:这三个属性参数是用来设置边框背景图片的铺放方式,类似于background-repeat
,其中stretch
会拉伸边框背景图片、repeat
是会重复边框背景图片、round
是平铺边框背景图片,其实stretch
为默认值。
border-image
和background-image
之间有一些类似之处,包括图片的引用和排列方式。
3.3.2 border-image
属性使用方法
- 引入背景图片:
border-image-source
。 - 切割引入北京图片:
border-image-slice
。 - 边框图片的宽度:
border-image-width
。 - 边框背景图片的排列方式:
border-image-repeat
。
1、border-image-source
语法:
border-image-source : url(image url); //image url可以是相对地址也可以是绝对地址。
2、border-image-slice
语法:
border-image-slice : [<number> | <percentage>] {1, 4} && fill ?
border-image-slice
是用来分解引入进来的背景图片。
1) 取值支持 <number> | <percentage>
。其中number
是没有单位的,因为其默认的单位就是像素。除了直接用number
来设置外,还可以使用百分比值来表示,即相对于边框背景图片而言的。
2)剪切的特性(slice)。在border-image
中slice是一个关键部分,也是让人难以理解的部分。
这里可以参考w3cplus border-image了解更多。
3、border-image-width
语法:
border-image-width: [ <length> | <percentage> | <number> | auto ]{1,4}
border-image-width
就是border-width
,用来设置边框的宽度,我们也可以直接用border-width
来代替border-image-width
的。
4、border-image-repeat
语法:
border-image-repeat: [ stretch | repeat | round ]{1,2}
border-image-repeat
是用来指定border-image
的排列方式,这个属性设置参数和其他的不一样,border-image-repeat
不遵循top,right,bottom,left
的方位原则,他只接受两个(或一个)参数值,第一个表示水平方向,第二个表示垂直方向;当取值为一个值时,表示水平和垂直方向的排列方式相同。同时其默认值是stretch
,如果你省略不取值时,那么水平和垂直方向都是以stretch
排列。
上面我们把
border-image
像background-image
一样分解开给大家介绍了其相关的知识点,但是在实际应用中,我们不是能分解的,必须写在一起,如果大家细心的话,从上面那些简单实例中就能发现,下面我将其正确的速记法列出来以供大家参考
border-image:<‘border-image-source’> || <‘border-image-slice’> [ / <‘border-image-width’>] || <‘border-image-repeat’>
3.3.3 浏览器兼容性
3.3.4 border-image
属性的优势
略
3.3.5 实战体验:按钮圆角阴影效果
略(p100-p105) 太长了/(ㄒoㄒ)/~~
有兴趣的可以到这里学习参考
*:first-child {
margin-top: 0 !important;
}
body>*:last-child {
margin-bottom: 0 !important;
}
/* BLOCKS
=============================================================================*/
p, blockquote, ul, ol, dl, table, pre {
margin: 15px 0;
}
/* HEADERS
=============================================================================*/
h1, h2, h3, h4, h5, h6 {
margin: 20px 0 10px;
padding: 0;
font-weight: bold;
-webkit-font-smoothing: antialiased;
}
h1 tt, h1 code, h2 tt, h2 code, h3 tt, h3 code, h4 tt, h4 code, h5 tt, h5 code, h6 tt, h6 code {
font-size: inherit;
}
h1 {
font-size: 28px;
color: #000;
}
h2 {
font-size: 24px;
border-bottom: 1px solid #ccc;
color: #000;
}
h3 {
font-size: 18px;
}
h4 {
font-size: 16px;
}
h5 {
font-size: 14px;
}
h6 {
color: #777;
font-size: 14px;
}
body>h2:first-child, body>h1:first-child, body>h1:first-child+h2, body>h3:first-child, body>h4:first-child, body>h5:first-child, body>h6:first-child {
margin-top: 0;
padding-top: 0;
}
a:first-child h1, a:first-child h2, a:first-child h3, a:first-child h4, a:first-child h5, a:first-child h6 {
margin-top: 0;
padding-top: 0;
}
h1+p, h2+p, h3+p, h4+p, h5+p, h6+p {
margin-top: 10px;
}
/* LINKS
=============================================================================*/
a {
color: #4183C4;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* LISTS
=============================================================================*/
ul, ol {
padding-left: 30px;
}
ul li > :first-child,
ol li > :first-child,
ul li ul:first-of-type,
ol li ol:first-of-type,
ul li ol:first-of-type,
ol li ul:first-of-type {
margin-top: 0px;
}
ul ul, ul ol, ol ol, ol ul {
margin-bottom: 0;
}
dl {
padding: 0;
}
dl dt {
font-size: 14px;
font-weight: bold;
font-style: italic;
padding: 0;
margin: 15px 0 5px;
}
dl dt:first-child {
padding: 0;
}
dl dt>:first-child {
margin-top: 0px;
}
dl dt>:last-child {
margin-bottom: 0px;
}
dl dd {
margin: 0 0 15px;
padding: 0 15px;
}
dl dd>:first-child {
margin-top: 0px;
}
dl dd>:last-child {
margin-bottom: 0px;
}
/* CODE
=============================================================================*/
pre, code, tt {
font-size: 12px;
font-family: Consolas, "Liberation Mono", Courier, monospace;
}
code, tt {
margin: 0 0px;
padding: 0px 0px;
white-space: nowrap;
border: 1px solid #eaeaea;
background-color: #f8f8f8;
border-radius: 3px;
}
pre>code {
margin: 0;
padding: 0;
white-space: pre;
border: none;
background: transparent;
}
pre {
background-color: #f8f8f8;
border: 1px solid #ccc;
font-size: 13px;
line-height: 19px;
overflow: auto;
padding: 6px 10px;
border-radius: 3px;
}
pre code, pre tt {
background-color: transparent;
border: none;
}
kbd {
-moz-border-bottom-colors: none;
-moz-border-left-colors: none;
-moz-border-right-colors: none;
-moz-border-top-colors: none;
background-color: #DDDDDD;
background-image: linear-gradient(#F1F1F1, #DDDDDD);
background-repeat: repeat-x;
border-color: #DDDDDD #CCCCCC #CCCCCC #DDDDDD;
border-image: none;
border-radius: 2px 2px 2px 2px;
border-style: solid;
border-width: 1px;
font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
line-height: 10px;
padding: 1px 4px;
}
/* QUOTES
=============================================================================*/
blockquote {
border-left: 4px solid #DDD;
padding: 0 15px;
color: #777;
}
blockquote>:first-child {
margin-top: 0px;
}
blockquote>:last-child {
margin-bottom: 0px;
}
/* HORIZONTAL RULES
=============================================================================*/
hr {
clear: both;
margin: 15px 0;
height: 0px;
overflow: hidden;
border: none;
background: transparent;
border-bottom: 4px solid #ddd;
padding: 0;
}
/* TABLES
=============================================================================*/
table th {
font-weight: bold;
}
table th, table td {
border: 1px solid #ccc;
padding: 6px 13px;
}
table tr {
border-top: 1px solid #ccc;
background-color: #fff;
}
table tr:nth-child(2n) {
background-color: #f8f8f8;
}
/* IMAGES
=============================================================================*/
img {
max-width: 100%
}
-->