固定宽度列和Bootstrap中的流体含量区域

bre*_*ine 13 css twitter-bootstrap

我想使用Twitter Bootstrap混合固定和流体宽度的列,就像这样.

正如您所看到的,使用HTML和CSS非常容易.有没有办法只使用bootstrap?

Dan*_*nny 14

Bootstrap中无法防止出现流畅的风格.你必须编写新的类并在同一个div中使用它.

<div class="span4 newclass">

.newclass{width:200px!important}
Run Code Online (Sandbox Code Playgroud)

  • 这将打破其他列,因为它们基于百分比. (12认同)