手机和手机的Bootstrap网格

时间:2014-06-23 00:35:31

标签: html twitter-bootstrap-3

我是响应式HTML和bootstrap的新手,我正试图围绕自举网格。

我需要在高于手机(xs)的任何设备上显示1列的行,并且所有设备都会显示另一列。

有人可以帮忙吗?

谢谢

1 个答案:

答案 0 :(得分:1)

没有任何代码作为示例。Bootstrap Website提供了一个很好的表格,其中概述了每个屏幕分辨率可见的类。您应该能够组合使用这些类来实现您所描述的结果。

例如:

<div class="col-md-6 hidden-xs">
 I will not be visible on mobiles.
</div>
<div class="col-md-6">
 I will be visible on all devices.
</div>