Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Twitter Bootstrap 来混合固定宽度和流动宽度的列,就像这样。
如您所见,使用 HTML 和 CSS 非常容易。有没有办法只使用引导程序来做到这一点?
Bootstrap 没有办法阻止流畅的风格。您必须编写新类并在同一个 div 中使用它。
<div class="span4 newclass"> .newclass{width:200px!important}
您必须创建一个跨度,其中包含一个绝对位于左侧或右侧的固定宽度列,然后添加另一列,其边距足够宽以适合固定列。