Bootstrap缩略图网格库校正

时间:2016-11-08 13:30:03

标签: html css twitter-bootstrap

我的引导程序图库不正确。

在这里你可以看到它有太多的空间。我的图像并非每次都相同:

错误

enter image description here

我发现了应该是什么样子:

正确

enter image description here

我的代码:

<div class="gallery">
    <div class="container">     
        <?php while($gallery = mysqli_fetch_array($db)) {
        ?>
        <div class="col-md-3">
            <figure class="effect-marley">
                <a title="<?php echo $gallery['gallery_thumbnail']; ?>" data-lightbox="gallery-popup" href="<?php echo $CONF['installation_path'] . $gallery['gallery_thumbnail']; ?>">
                        <img src="<?php echo $CONF['installation_path'] . 'system/timthumb.php?src=' . $CONF['installation_path'] . $gallery['gallery_thumbnail'] . '&h=350&zc=1'; ?>" alt="<?php echo $gallery['gallery_name']; ?>" />
                </a>
                <figcaption>
                    <p><?php echo $gallery['gallery_name']; ?></p>              
                </figcaption>           
            </figure>
        </div>
        <?php } ?>
    </div>
</div>

0 个答案:

没有答案