CSS3 - boarder-image属性

CSS3 - boarder-image属性 首页 / CSS入门教程 / CSS3 - boarder-image属性

CSS Border image属性用于向某些元素添加图像边界。边界图像的示例语法如下-

#borderimg {
   border: 10px solid transparent;
   padding: 15px;
}

最常用的值如下所示-

Sr.No.Value & Remark
1

border-image-source

用于设置图像路径

无涯教程网

2

border-image-slice

用于切片边框图像

3

border-image-width

用于设置边框图像宽度

4

borer-image-repeat

用于将边框图像设置为圆形(rounded),重复(repeated)和拉伸(stretched)

Border Images示例

以下是演示将图像设置为元素边框的示例。

<html>
   <head>
      <style>
         #borderimg1 { 
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 10px;
         }
         #borderimg2 { 
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 20px;
         }
         #borderimg3 { 
            border: 10px solid transparent;
            padding: 15px;
            border-image-source: url(/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 30;
            border-image-width: 30px;
         }
      </style>
   </head>

   <body>
      <p id="borderimg1">This is image boarder example.</p>
      <p id="borderimg2">This is image boarder example.</p>
      <p id="borderimg3">This is image boarder example.</p>
   </body>
</html> 

它将产生以下输出-

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

ZooKeeper实战与源码剖析 -〔么敬国〕

MongoDB高手课 -〔唐建法(TJ)〕

SRE实战手册 -〔赵成〕

跟月影学可视化 -〔月影〕

OAuth 2.0实战课 -〔王新栋〕

Redis核心技术与实战 -〔蒋德钧〕

To B市场品牌实战课 -〔曹林〕

如何讲好一堂课 -〔薛雨〕

手把手带你搭建推荐系统 -〔黄鸿波〕

好记忆不如烂笔头。留下您的足迹吧 :)