1

我正在尝试从 php 中的一个流行类别中提取图像。图像获取正确,但我无法控制 html 中的图像。

我想要如下图:

图像1

但是得到这个图像块:

图像2

我正在尝试将此图像以表格格式放在 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>

谁能帮我吗?对不起英语不好!

4

1 回答 1

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) 的最大宽度达到后自动下降到底线。

于 2013-02-07T11:03:03.543 回答