我正在尝试从php中的热门类别中提取图像。图像正确获取,但我无法控制html中的图像。
我想要的图片如下:
但是获得此图像块:
我试图在html页面中将这个图像放在表格格式中:
<table width=200>
<tr>
<td width=200><img src="http://www.mywebsite.com/images/[var.images;block=td;comm]" width=100 /></td>
</tr>
</table>
任何人都可以帮助我吗?抱歉英文不好!
答案 0 :(得分:2)
您可以使用css完成此操作。它会给你更多的灵活性。
<div id="maincontainer" style="width:400px;">
// run your foreach loop here
<img src='pathtoimage' style='width:200px; float:left;' />
// for each loop ends here
</div>
这为您提供了很大的灵活性。考虑到img是一个块元素,它在包含div(maincontainer)的最大宽度达到之后会自动落到底线。