背景画像


基本
background-image: url(../image/top/aaa.png);
background-repeat: no-repeat;
background-repeat: repeat-x;
background-repeat: repeat-y;
background-position:right bottom;



背景画像解除でエラーにならないもの
.example { background-image : none; }
.example {background : none;}

サイズ指定
background-size:50% auto;
(幅:高さ)

 
background-image:none;
background : none;



サイズ指定
background-size:50% auto;
(幅:高さ)

位置指定

background-position: 横の位置 縦の位置;(左上から)