border-imageプロパティは、画像ボーダーについてまとめて指定する際に使用します。
border-imageプロパティでは、
border-image-source、
border-image-slice、
border-image-width、
border-image-outset、
border-image-repeatの各プロパティの値を、まとめて指定することができます。
省略された値はそれらの初期の値に設定されます。
現在のところ、個別のプロパティをサポートしているブラウザは無いようなので、画像ボーダーを実現する際には、border-imageプロパティを利用するのが一般的です。
border-imageプロパティでも、border-image-outsetの値はブラウザでサポートされていないようです。
画像は上下左右それぞれのボーダー用に4枚必要となるわけではなく、1枚の画像で上下左右の画像ボーダーを実現します。
画像ボーダーの描画プロセスは以下の順序になります。
p.sample1 {
width:300px; height:75px;
border-image: url(“images/bg_dot.png”) 15 round;
border-style:solid; border-width:10px;
}
p.sample2 {
width:300px; height:75px;
border-image: url(“images/bg_dot.png”) 15 round stretch;
border-style:solid; border-width:15px;
}
p.sample3 {
width:300px; height:75px;
border-image: url(“images/bg_dot.png”) 15;
border-style:solid; border-width:15px;
}
p.sample4 {
width:300px; height:75px;
border-image: url(“images/bg_dot.png”) 30;
border-style:solid; border-width:15px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”sample1″>画像ボーダーの使用例1</p>
<p class=”sample2″>画像ボーダーの使用例2</p>
<p class=”sample3″>画像ボーダーの使用例3</p>
<p class=”sample4″>画像ボーダーの使用例4</p>
<p>
以下は、ボーダーに使用した画像です。<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/bg_dot.png” alt=”ボーダー用画像” border=”1″>
</p>
</body>
</html>
画像ボーダーの使用例1
画像ボーダーの使用例2
画像ボーダーの使用例3
画像ボーダーの使用例4
以下は、ボーダーに使用した画像です。
p.prefix_sample1 {
width:300px; height:75px;
-moz-border-image: url(“images/bg_dot.png”) 15 round;
-webkit-border-image: url(“images/bg_dot.png”) 15 round;
-o-border-image: url(“images/bg_dot.png”) 15 round;
-ms-border-image: url(“images/bg_dot.png”) 15 round;
border-style:solid; border-width:10px;
}
p.prefix_sample2 {
width:300px; height:75px;
-moz-border-image: url(“images/bg_dot.png”) 15 round stretch;
-webkit-border-image: url(“images/bg_dot.png”) 15 round stretch;
-o-border-image: url(“images/bg_dot.png”) 15 round stretch;
-ms-border-image: url(“images/bg_dot.png”) 15 round stretch;
border-style:solid; border-width:15px;
}
p.prefix_sample3 {
width:300px; height:75px;
-moz-border-image: url(“images/bg_dot.png”) 15;
-webkit-border-image: url(“images/bg_dot.png”) 15;
-o-border-image: url(“images/bg_dot.png”) 15;
-ms-border-image: url(“images/bg_dot.png”) 15;
border-style:solid; border-width:15px;
}
p.prefix_sample4 {
width:300px; height:75px;
-moz-border-image: url(“images/bg_dot.png”) 30;
-webkit-border-image: url(“images/bg_dot.png”) 30;
-o-border-image: url(“images/bg_dot.png”) 30;
-ms-border-image: url(“images/bg_dot.png”) 30;
border-style:solid; border-width:15px;
}
<html>
<head>
<link rel=”stylesheet” href=”sample.css”
type=”text/css”>
</head>
<body>
<p class=”prefix_sample1″>画像ボーダーの使用例1</p>
<p class=”prefix_sample2″>画像ボーダーの使用例2</p>
<p class=”prefix_sample3″>画像ボーダーの使用例3</p>
<p class=”prefix_sample4″>画像ボーダーの使用例4</p>
<p>
以下は、ボーダーに使用した画像です。<br>
<img src=”https://www.htmq.com/wp-content/themes/htmq/htmq-images/bg_dot.png” alt=”ボーダー用画像” border=”1″>
</p>
</body>
</html>
画像ボーダーの使用例1
画像ボーダーの使用例2
画像ボーダーの使用例3
画像ボーダーの使用例4
以下は、ボーダーに使用した画像です。