我正在尝试重复一个图像,它是一个div,没有背景图像,但没有想到如何.你能请我指点一下吗?
我的代码如下所示:
<div id="rightflower"> <img src="/image/layout/lotus-dreapta.png" style="repeat-y; width: 200px;"/> </div>
解决方法
你可以用来重复-y作为style =“background-repeat:repeat-y; width:200px;”而不是style =“repeat-y”.
在图像标签中尝试这一点,或者您可以使用下面的CSS作为div
.div_backgrndimg { background-repeat: repeat-y; background-image: url("/image/layout/lotus-dreapta.png"); width:200px; }