主頁
CSS
CSS 邊框圖片
Tryit: 使用 border-image 建立邊框
執行 ❯
建立您
自己的
網站
×
更改方向
儲存程式碼
更改主題,暗/亮
轉到 Spaces
<!DOCTYPE html> <html> <head> <style> #borderimg { border: 10px solid transparent; padding: 15px; border-image: url(border.png) 30 round; } </style> </head> <body> <h1>The border-image Property</h1> <p>Here, the middle sections of the image are repeated to create the border:</p> <p id="borderimg">border-image: url(border.png) 30 round;</p> <p>Here is the original image:</p><img src="border.png"> <p><strong>Note:</strong> Internet Explorer 10, and earlier versions, do not support the border-image property.</p> </body> </html>