如果连接到数据库,Bootstrap中的类行不起作用

时间:2017-09-04 13:45:57

标签: php mysql

所以这样,我打算使用col-md-5与bootstrap建立一行。我想会把三个容器排成一行。但是当我连接到数据库时,结果并不那么有希望!我认为结果仍然排成一列,但即便到底。任何解决方案

当我连接到数据库并且我没有连接到数据库时,这是编码和结果 - full image

this is the coding and the result when I connect to the database and I do not connect to the database

2 个答案:

答案 0 :(得分:0)

问题是你是将div放在循环中的row,在每次迭代时重复row类,这会为每次迭代创建新行。将带有row类的div放在循环之外,如:

<div class="row">
...
while(...)
{

}
...
</div>

答案 1 :(得分:0)

你在循环中包含了一个带有行类的div,这就是它垂直显示的原因。

在while语句中,只循环使用col类的div,而行div在循环外部

<div class="row">
<? Your php while loop code ?>
<div class="col-lg-3">...</div>
<? end of your while loop?>
</div> <!-- end of your div row -->