トップページ  > CSS3  > border-image

★CSS3リファレンス

border-image …… 画像ボーダーを指定する
Firefox3(-moz-)Firefox4(-moz-) Google Chrome1(-webkit-)Google Chrome2(-webkit-)Google Chrome3(-webkit-)Google Chrome4(-webkit-)Google Chrome5(-webkit-)Google Chrome6(-webkit-) Safari3(-webkit-)Safari4(-webkit-)Safari5(-webkit-)
広告

border-imageプロパティは、画像ボーダーについてまとめて指定する際に使用します。

border-imageプロパティでは、 border-image-sourceborder-image-sliceborder-image-widthborder-image-outsetborder-image-repeatの各プロパティの値を、まとめて指定することができます。 省略された値はそれらの初期の値に設定されます。

現在のところ、個別のプロパティをサポートしているブラウザは無いようなので、画像ボーダーを実現する際には、border-imageプロパティを利用するのが一般的です。 border-imageプロパティでも、border-image-outsetの値はブラウザでサポートされていないようです。

画像は上下左右それぞれのボーダー用に4枚必要となるわけではなく、1枚の画像で上下左右の画像ボーダーを実現します。

画像ボーダーの描画プロセスは以下の順序になります。

  1. border-image-sourceでボーダーに使用する画像が指定される
  2. border-image-sliceで画像の端から内側へスライスする距離が指定され、画像が9つのイメージパーツに分割される
  3. border-image-widthで画像ボーダーの太さが指定される(border-width代替可)
  4. border-image-repeatのキーワードstretch・round・repeat・spaceで、画像の繰り返し方法が指定される
  5. 画像タイルの開始位置が決定され、ボーダーイメージエリアに合わせて拡大縮小されてタイル状に敷き詰められる

■値

各プロパティの値をスペース、または、スラッシュ( / )で区切って指定
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内要素を除く)
値の継承
しない

■使用例

CSSソースは外部ファイル(sample.css)に記述

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ソース

<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

以下は、ボーダーに使用した画像です。
ボーダー用画像

■ベンダープレフィックスを付けた場合の使用例

CSSソースは外部ファイル(sample.css)に記述

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ソース

<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

以下は、ボーダーに使用した画像です。
ボーダー用画像

広告
Sponsors
広告
MuuMuu Domain!
ドメイン取るならお名前.com
現役エンジニアのオンライン家庭教師【CodeCamp】
サイトに広告を掲載してお小遣いが稼げる!【A8.net】
Node.jsコース
はじめてのプログラミングコース
▲ページ先頭へ
HTMLクイックリファレンスについて
© HTMQ