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中文網其他相關文章!