background

投稿日:2022-09-17 投稿者:PS カテゴリ:その他 タグ: ,

背景を設定する。

background: #C00 url("x.jpg") no-repeat 48px 36px;

background-color: #C00;               /* 色 */
background-image: url("x.jpg");       /* 画像など */
background-repeat: no-repeat;         /* 背景の繰り返し */
background-size: 48px 36px;           /* 背景のサイズ */
background-position: top left;        /* 背景の位置 */
background-attachment: scroll;        /* 背景の固定 */
background-origin: border-box;        /* 背景の基準点 */
background-clip: border-box;          /* 背景と重なる要素のクリッピング */

background-clip

background-clip: border-box;
background-clip: padding-box;
background-clip: content-box;
background-clip: text;