我知道这可能听起来很奇怪,但我需要知道如何才能使整洁无响应?
发布于 2013-11-14 01:02:40
从整洁/网格中打开_ out -container.scss er.scss,然后在width: $max-width中添加replace max-width: $max-width。
发布于 2013-11-17 23:36:06
让你的outer-container为你的容器设置相同大小的min-width。
section {
@include outer-container;
min-width: 1088px;
}发布于 2013-11-06 11:52:38
做一些这样的事情
ie.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
}https://stackoverflow.com/questions/19757962
复制相似问题