背景を青くする
BODY{
background-color : blue;
}
背景に画像などを使用する
BODY{
background-image : url(ファイル名.gif);
}
フォルダに保存してある場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
}
画像を左上に表示する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : left top;
}
画像を右上に表示する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : right top;
}
画像を左下に表示する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : left bottom;
}
画像を右下に表示する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : right bottom;
}
画像を左上に固定する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : left top;
background-attachment : fixed;
}
画像を右上に固定する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : right top;
background-attachment : fixed;
}
画像を左下に固定する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : left bottom;
background-attachment : fixed;
}
画像を右下に固定する場合
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : no-repeat;
background-position : right bottom;
background-attachment : fixed;
}
画像を左側に繰り返す場合(垂直方向)
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : repeat-y;
background-position : left center;
}
画像を右側に繰り返す場合(垂直方向)
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : repeat-y;
background-position : right center;
}
画像を画面の上の方だけ繰り返す場合(水平方向)
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : repeat-x;
background-position : center top;
}
画像を画面の下の方だけ繰り返す場合(水平方向)
BODY{
background-image : url(フォルダ名/ファイル名.gif);
background-repeat : repeat-x;
background-position : center bottom;
}