首頁  >  文章  >  web前端  >  css border-image-source屬性怎麼用

css border-image-source屬性怎麼用

青灯夜游
青灯夜游原創
2019-05-30 11:38:513422瀏覽

css border-image-source屬性用於指定要使用的圖像,從而取代border-style屬性中設定的邊框樣式。但當屬性值為 "none",或如果影像無法顯示時,則還需使用邊框樣式。

css border-image-source屬性怎麼用

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(&#39;https://img.php.cn/upload/article/000/000/024/5c62637b1a4fe853.png&#39;);
    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屬性怎麼用

以上是css border-image-source屬性怎麼用的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn