CSS background-repeat

Loading

スポンサードリンク

CSSコピー

クリックで全選択状態になります。

サンプル
.sample{
background-image: url(image.gif);
background-repeat: repeat;
}
<p class="sample">スタイルシート サンプル</p>

 


.sample{
background-image: url(image.gif);
background-repeat: repeat-x;
}
<p class="sample">スタイルシート サンプル</p>

 


.sample{
background-image: url(image.gif);
background-repeat: repeat-y;
}
<p class="sample">スタイルシート サンプル</p>

 


.sample{
background-image: url(image.gif);
background-repeat: no-repeat;
}
<p class="sample">スタイルシート サンプル</p>

 

ポイントや注意事項
値/プロパティ値

em px 等の単位

スポンサードリンク