[CSS]repeatで背景画像の縦と横で繰り返しを指定する
書式
background: url(./img/xxx.png) repeat;
使用例
<style>
.cft {
background: url(./img/test.png) repeat;
height: 150px;
width: 250px;
border: 1px solid #000;
}
</style>
<div class="cft"></div>
Coding Changes the World
書式
background: url(./img/xxx.png) repeat;
使用例
<style>
.cft {
background: url(./img/test.png) repeat;
height: 150px;
width: 250px;
border: 1px solid #000;
}
</style>
<div class="cft"></div>