10 09/2014

bootstrap narrow

最后更新: Wed Sep 10 2014 12:29:11 GMT+0800

bootstrap 超过 1170 会继续全宽!有时候,我们更希望传统的 980 宽度。

@media (min-width: 768px){
    .container {
        max-width: 980px;
    }
}

前提是内容部分必须被 .container 包裹。

粗暴一点(为了支持ie67,已有 html5shiv 情况下)可以直接

.container {max-width: 980px;}