Bootstrap 网格系统和 Table 元素

Bootstrap Grid system and Table element

bootstrap 网格系统是否取代了对 table 的需求?我的意思是我可以用 table 将一行分成 3 部分,例如:

<table>
<tr>
<th></th>
<th></th>
<th></th>
</tr>

也可以像这样使用网格:

 <div class="row">
 <div class="col-sm-4">.col-sm-4</div>
 <div class="col-sm-4">.col-sm-4</div>
 <div class="col-sm-4">.col-sm-4</div>
 </div>

我似乎可以使用网格,table 反之亦然。因此,如果我必须在我的导航栏中的某个特定位置放置一些东西,我应该使用什么方法?任何帮助将不胜感激。

两者根本不等价 - Bootstrap 使用 grid system for layout, and tables 显示表格数据。

通常,这被认为是一种很好的做法。表格很难做出响应(改变移动设备和平板电脑视图的布局),但它们非常适合显示类似于 Microsoft Excel 显示数据的方式的数据。

我建议阅读上面链接的 Bootstrap 文档,它们解释了何时使用每个文档。