ブログ全体に背景画像を貼るタグです。
①
背景全面に画像を繰り返し貼る場合↓
html{
background-image:url(★);/*画像URL*/
background-repeat:repeat;
background-attachment:fixed;
}
②
背景画像をある位置に固定&繰り返しなし↓
html{
background-image:url(★);/*画像URL*/
background-position:■;/*画像の位置*/
background-repeat:no-repeat;
background-attachment:fixed;
}
位置の部分には↓をコピペ。
左上 → left top
左真ん中 → left center
左下 → left bottom
真ん中上 → center top
ど真ん中 → center center
真ん中下 → center bottom
右上 → right top
右真ん中 → right center
右下 → right bottom
貰ったらコメ!
