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