0

我知道这听起来可能很奇怪,但我需要知道如何让 Neat 没有响应?

4

3 回答 3

2

从整洁/网格中打开 _outer-container.scss 并添加只是替换max-width: $max-widthwidth: $max-width.

于 2013-11-13T17:02:40.433 回答
0

Where you have your outer-container set the min-width for the same size of your container.

section {
  @include outer-container;
  min-width: 1088px;
}
于 2013-11-17T15:36:05.760 回答
-1

做这样的事情

即.scss

.ie8 {
    // Force IE8 to not be responsive
    //
    body {
        width: 1100px !important;
        margin: 0 auto;
    }

    * {
        max-width: none;
    }
}

header.js

if (Modernizr.mq('only all')) {
// initialise only for devices
}
于 2013-11-06T03:52:38.407 回答