我正在尝试使用 php 和 css 设计图片库。我已将图像放在无序列表中,例如,
<ul style="list-style-type:none;">
<?
while($data=mysql_fetch_row($result))
{
$pic=$data[2];
if ($pic)
{
$path="http://www.myworkdemo.com/pecifica/photos/".$pic;
}
?>
<li style="list-style-type:none; float: left; margin-left:4px; margin-top:5px; margin-bottom:5px;">
<img src=<?=$path?> width=300 height=240></img>
<!--<td class='delete'><a href='addproject.php?ProjId=<?=$data[0]?>&action=edit' >Edit</a></td>-->
<div class='delete'><a href='images.php?picid=<?=$data[0]?>&action=delete' class="ask">Delete</a></div>
</li>
</ul>
我得到了所有图像,但没有从列表中删除一个项目符号(开始)。我的css格式化后的画廊就像
由于那个子弹,我失去了第一行图像的对齐方式。请指导我。