首頁  >  文章  >  web前端  >  使用 CSS 設定邊框圖片寬度

使用 CSS 設定邊框圖片寬度

王林
王林轉載
2023-08-26 22:09:281247瀏覽

使用 CSS 设置边框图像宽度

border-image-width 屬性用於透過 CSS 設定邊框圖像寬度。

範例

您可以嘗試執行以下命令實作 border-image-width 屬性的程式碼 -

現場示範

<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>

以上是使用 CSS 設定邊框圖片寬度的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除