使用 CSS 设置圆角、重复和拉伸的边框图像


border-image-repeat 属性可用于设置圆角、重复和拉伸的边框图像,并使用 CSS。

示例

你可以尝试运行以下代码,以实现 border-image-repeat 属性

在线示例

<html>
   <head>
      <style>
         #borderimg1 {
            border: 15px solid transparent;
            padding: 15px;
            border-image-source: url(https://tutorialspoint.com/css/images/border.png);
            border-image-repeat: round;
            border-image-slice: 40;
            border-image-width: 20px;
         }
      </style>
   </head>
   <body>
      <p id = "borderimg1">This is image border example.</p>
   </body>
</html>

更新于: 2020-06-29

220 次观看

开启你的 职业生涯

完成课程即可获得认证

开始学习
广告