duandang9434 2014-10-02 16:18
浏览 61
已采纳

在twitter bootstrap上使用foreach显示每行四个结果

I'm working with twitter bootstrap framework and need to display a long resultset with the foreach control structure.

To gain space, I'd like to display 4 results per "bootstrap row", like this:

<div class="row">
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
</div>

<div class="row">
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
    <div class="col-md-3">
        1 table row
    </div>
</div>

//...more bs rows

How should I build the php foreach structure to render the above html?

Thanks

  • 写回答

1条回答 默认 最新

  • douzhongju8780 2014-10-02 16:28
    关注

    I think you don't even have to start a new row manually. If you just echo all your elements with the class "col-md-3" in one "row" it should break automatically after 4 and its even more flexible for a responsive website.

    Like this:

    <div class="row">
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
        <div class="col-md-3">
            1 table row
        </div>
    </div>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 如何让企业微信机器人实现消息汇总整合
  • ¥50 关于#ui#的问题:做yolov8的ui界面出现的问题
  • ¥15 如何用Python爬取各高校教师公开的教育和工作经历
  • ¥15 TLE9879QXA40 电机驱动
  • ¥20 对于工程问题的非线性数学模型进行线性化
  • ¥15 Mirare PLUS 进行密钥认证?(详解)
  • ¥15 物体双站RCS和其组成阵列后的双站RCS关系验证
  • ¥20 想用ollama做一个自己的AI数据库
  • ¥15 关于qualoth编辑及缝合服装领子的问题解决方案探寻
  • ¥15 请问怎么才能复现这样的图呀