首頁 >web前端 >css教學 >CSS 邊框圖片重複

CSS 邊框圖片重複

WBOY
WBOY轉載
2023-09-10 11:17:02846瀏覽

CSS 边框图像重复

CSS border-image-repeat 屬性用於將邊框影像設定為圓角、重複和拉伸。

範例

您可以嘗試執行以下程式碼實作 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: 50;
            border-image-width: 10px;
         }
      </style>
   </head>
   <body>
      <p id = "borderimg1">This is image border example.</p>
   </body>
</html>

以上是CSS 邊框圖片重複的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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