カテゴリー
border-image border-image-source CSS3

【CSS3】border-image-source:画像ボーダーの画像を指定する

(例)【CSS3】border-image-sourceの使用方法

See the Pen
border-image-source
by linlin (@linlin098765)
on CodePen.

<p class="sample1"></p>
<p>
<br>ボーダーに使用した画像<br>
<img src="https://www.llc-linlin.com/picture/SEO.jpg" alt="ボーダー用画像">
</p>
p.sample1 {
width:200px; height:50px;
border-image-source:url("https://www.llc-linlin.com/picture/SEO.jpg");
border-image-slice:15px;
border-image-width:10;
border-image-outset:5px;
border-image-repeat:round stretch;
border-style:solid; border-width:3px;
}

【CSS3】border-image-source:画像ボーダーの画像を指定する

 CSS3のborder-image-sourceは、画像ボーダーに指定する画像を指定するプロパティです。
 画像ボーダーは4つの画像ではなく、1つの画像で上下左右のボーダーを作成します。1つの画像ファイルが9つに分割され、その分割された画像がボーダーを構成します。