我的HTML代码:
<ul class="galleryImages">
<?php foreach($rows as $row) { ?>
<li style="width: 33.3%; display: inline-block;">
<table cellpadding="0" cellspacing="0" width="100%" align="center">
<tr>
<td>
<div class="moveImg" style="width: 300px; height: 200px; background: #ccc;"></div>
</td>
</tr>
</table>
</li>
<?php } ?>
<div class="clear"></div>
我有3张图片,当我拖一张时,其他人缩进。它们并不像我想要的那样固定......当li宽度为%时,就会发生这种情况。我希望li宽度为%,因为我使用动态定位图片。 - &GT;我数了多少张照片......