使用CSS设置图像路径

CSS中使用border-image-source属性设置图像路径。您可以尝试运行以下代码来设置图像路径-

示例

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