在同一行中显示三个不同的值

时间:2016-04-09 16:17:51

标签: php html mysql css

[找到解决方案!我明天会发布代码。无论如何,再次感谢帮助我。 :)]

这是我显示博客中所有帖子的代码。但我试图显示三个不同的帖子(在一行中)并且它不起作用。我已经检查了与此相关的一些类似问题,但这只是为了安排图像的位置,如下所示:align 3 images in same row with equal spaces?

查看此屏幕截图以获取更多详细信息:   IMG2

Php代码:

    <div class="container">
    <div class="row">  
     <div class="block col-sm-4 col-sm-4 col-sm-4">
     <img class="img-rounded img-responsive center" src="images/<?php echo $post_image?>">
    <a href="post.php?p_id=<?php echo $post_id; ?>"><h4><?php echo $post_title?></h4></a>
     <p><span class ="glyphicon glyphicon-time"></span> Posted on <?php echo $post_date?> | by <?php echo $post_author?></p>
    <p align="justify"><?php echo $post_content?></p>
     <a href="#" class="btn btn-default" role="button">Read More</a>
    <p>&nbsp;</p>
    </div>          
     </div> 
<?php } ?>
    </div>

注意:它只有一行,因为它会自动显示所有与我在上面的php代码中声明的格式相同的帖子。

def SumOfDigits(a, b):
    result = 0
    for i in range(a + (not a % 2), b + 1, 2):
        while i:
            result += i % 10
            i //= 10
    return result

1 个答案:

答案 0 :(得分:2)

如果您希望一行中有3列,则row div应包含3个带有{​​{1}}的div。

class="col-sm-4"