如何打破网格?这是否有一个常见的做法?

我正在使用引导程序的网格,我想有一个div来“打破”网格,并延伸到屏幕边框('宽度:100%')。如何打破网格?这是否有一个常见的做法?

我的代码看起来是这样的:

<div class="container"> 

<div class="row">

<div class="span12">

div that is the width of the grid

</div>

<div class="unknown">

div that breaks the grid and has full width

</div>

</div>

</div>

我怎么能做到这一点?打开许多不同的容器是否是常见做法,或者我可以使用与容器嵌套的div来做到这一点?

回答:

使用多个容器,而不是使用自定义样式重写布局。 自引导本身具有与多个容器的例子被使用,如: the carousel

以上是 如何打破网格?这是否有一个常见的做法? 的全部内容, 来源链接: utcz.com/qa/265424.html

回到顶部