这是我的代码:
<?php
$qr = mysql_query("SELECT * FROM products");
while($res = mysql_fetch_array($qr)):
?>
<div class="box">
<p><?php echo $res[1]; ?></p>
<img src="<?php echo $res[3]; ?>" width="100" /><br />
<a href="<?php echo $res[4]; ?>">View Data Sheet</a>
</div>
<?php
endwhile;
?>
我想要这样的获取记录的输出http://jsfiddle.net/CqYhE/3/
请帮助我,如何在使用 php 循环打印时仅在每行的中心 div 上应用 10px 的边距(左右)。