【CSS】backgroundプロパティで色や画像を指定

プログラミング

backgroundプロパティ

backgroundプロパティは、色や画像、反復方法などの背景に関するスタイルをまとめて一括で指定するCSS(スタイルシート)のプロパティです。
background一括指定プロパティで設定されていないプロパティは、既定値に設定されます。

backgroundの成分プロパティ

background-color背景色を指定
background-attachment背景の位置を固定するかどうか指定
background-image背景に画像を指定する
background-repeat背景画像をどのように繰り返すかを設定
background-position背景画像の初期位置を設定
background-clip要素の背景の適用範囲を指定
background-size要素の背景画像の寸法を設定
background-origin要素の背景の基準位置を指定

background各プロパティの書き方

.test {
    background-color: 値;
    background-attachment: 値;
    background-image: 値;
    background-repeat: 値;
    background-position: 値;
    background-clip: 値;
    background-size: 値;
    background-origin: 値;
}

タイトルとURLをコピーしました