9月更新・前月(8月)の人気記事トップ10 09/02/2024
- ( 01 – ) 【Labs】position:absoluteとwidth:100%を指定すると横幅の設定がうまくいかない場合の対処方法について
- ( 07 ↑) 【Mac】macOSをHigh SierraからMontereyにアップグレード
- ( 03 – ) 【Mac】横画面で撮影した動画をYouTubeショート用にMacのiMovieで縦画面に編集する方法
- ( 10 ↑) 【iPhone / iPad】iPhoneのツイッターアプリでユーザー名をコピーする方法
- (圏外↑) 【Labs】CSSだけでドロップダウンメニュー
- ( 02 ↓) 【jQuery】入門2. jQueryをHTMLに組み込む
- ( 09 ↑) 【Mac】Safariでソースコードを見る方法
- ( 04 ↓) 【jQuery】入門7. jQueryで新しいWindowを開く
- ( 06 ↓) 【2024年5月】iPad画面解像度まとめ
- (圏外↑) 【GIMP】レイヤーをロック
【CSS3リファレンス】background-clip
こんにちは(・∀・)
CSS3で新しく追加されたプロパティをご紹介します。今回ご紹介するCSSプロパティはbackground-clipです。
概要
background-clipプロパティはborderプロパティとbackground-imageプロパティが設定されている要素の背景画像の表示の仕方を指定する事ができるプロパティです。
.sample {
background-clip: border-box;
}
適用要素
すべての要素
指定できる値
- border-box
- 背景画像をborder領域と重ねて表示
- padding-box
- 背景画像をborderの内側から表示
- content-box
- 要素にpaddingが設定されている場合paddingの内側から背景画像を表示
初期値
border-box
サンプル
HTML
<p class="demo1">
border-box
背景画像をborder領域と重ねて表示します。
</p>
<p class="demo2">
padding-box
背景画像をborderの内側から表示します。
</p>
<p class="demo3">
content-box
要素にpaddingが設定されている場合、paddingの内側から背景画像を表示します。
</p>
CSS
.demo1,
.demo2,
.demo3 {
padding:10px;
background: url(sample.jpg) top left no-repeat;
border: 10px dashed #777;
}
.demo1 {
background-clip: border-box;
}
.demo2 {
background-clip: padding-box;
}
.demo3 {
background-clip: content-box;
}
Result
border-box
背景画像をborder領域と重ねて表示します。
padding-box
背景画像をborderの内側から表示します。
content-box
要素にpaddingが設定されている場合、paddingの内側から背景画像を表示します。