css border-image-source屬性用於指定要使用的圖像,從而取代border-style屬性中設定的邊框樣式。但當屬性值為 "none",或如果影像無法顯示時,則還需使用邊框樣式。
css border-image-source屬性怎麼用?
border-image-source屬性規定要使用的圖像,從而取代border-style屬性中設定的邊框樣式。
語法:
border-image-source: none|image;
屬性值:
● none:不使用映像。
● image:用作邊框的影像的路徑,使用url()包含。
註解:如果值為 "none",或如果影像無法顯示,則使用邊框樣式。
css border-image-source屬性 語法
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <style> div { border: 30px solid transparent; width: 200px; height: 50px; border-image-source: url('https://img.php.cn/upload/article/000/000/024/5c62637b1a4fe853.png'); border-image-repeat: round; border-image-slice:30; } </style> </head> <body> <div>DIV 使用图像边框</div> <p>使用的图片:</p> <img src="https://img.php.cn/upload/article/000/000/024/5c62637b1a4fe853.png" alt="css border-image-source屬性怎麼用" > </body> </html>
效果圖:
以上是css border-image-source屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!