border-image …… 画像ボーダーを指定する
広告
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枚の画像で上下左右の画像ボーダーを実現します。
画像ボーダーの描画プロセスは以下の順序になります。
- border-image-sourceでボーダーに使用する画像が指定される
- border-image-sliceで画像の端から内側へスライスする距離が指定され、画像が9つのイメージパーツに分割される
- border-image-widthで画像ボーダーの太さが指定される(border-widthで代替可)
- border-image-repeatのキーワードstretch・round・repeat・spaceで、画像の繰り返し方法が指定される
- 画像タイルの開始位置が決定され、ボーダーイメージエリアに合わせて拡大縮小されてタイル状に敷き詰められる
- 各プロパティの値をスペース、または、スラッシュ( / )で区切って指定
- border-image-sourceの値 border-image-sliceの値 / border-image-widthの値 / border-image-outsetの値 border-image-repeatの値の順で指定する
- 初期値
- border-image-sourceはnone、border-image-sliceは100%、border-image-widthは1、border-image-outsetは0、border-image-repeatはstretch
- 適用対象
- すべての要素(border-collapseプロパティの値にcollapseが指定されたtable内要素を除く)
- 値の継承
- しない
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="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="images/bg_dot.png" alt="ボーダー用画像" border="1">
</p>
</body>
</html>
↓↓↓
画像ボーダーの使用例1
画像ボーダーの使用例2
画像ボーダーの使用例3
画像ボーダーの使用例4
以下は、ボーダーに使用した画像です。
広告