使用PHP创建图像网格

时间:2018-08-09 19:16:52

标签: php image

我对PHP编码有疑问。我设法在图像网格上很好地显示了前12张图像,但是在那之后,图片似乎不合适了。

<?php
$i = 0;
while ($row = mysqli_fetch_array($result)) {
    if ($i % 3 == 0) {
        echo "<div class='w3-quarter'>";
    }
    echo "<img src='images/{$row['image']}' onclick=onClick(this) style='width:100%'>";
    if ($i % 3 == 2) {
        echo"</div>";
    }
    $i++;
}
?>

the gap after 12th picture

我希望输出看起来像这样 2

我使用的css是w3.css的w3季度

0 个答案:

没有答案