如何在 bootstrap css 中获取整个可用宽度?

How to take whole available width in bootstrap css?

我基本上是一个后端开发者,对前端的了解非常少

所以基本上我在 bootstrap 中有左侧边栏和右侧主要内容类型布局。现在我想将剩余的整个宽度作为主要内容(总宽度 - 左侧边栏宽度),在 Bootstrap 3.

有什么建议吗?

当使用Bootstrap时,class col-**-12将给出全角。 (其中 ** 可以是任意大小)

http://getbootstrap.com/css/#grid

使用网格,很简单。简而言之:您的屏幕分为 12 列,您说占多少列。

<div class="row">
  <div class="col-lg-3">
      Sidebar goes here
  </div>
  <div class="col-lg-9">
      Main content
  </div>
</div>

注意:要全屏宽度,请尝试将其作为

的第一个子元素