1
我不能讓我的背景圖像重複垂直使用CSS和HTML。我的HTML看起來像這樣:我無法獲得背景圖像垂直重複與CSS/HTML
<div style="stack">
<img src="http://i.imgsafe.org/370409f.png" style="background-repeat:repeat-y;
width:120px;height:100px;alt="sunflower">  
</div>
width:120px;height:100px;alt="sunflower">  
</div>
我的CSS是這樣的:
.stack {
background-image:url(http://i.imgsafe.org/370409f.png)
background-repeat:repeat-y;
}