代码:
.container {
width: 960px;
max-width: 100%;
min-width: 960px;
height: 500px;
background-color: #fff;
border: 1px solid #000;
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation : portrait) {
.container {
width: 960px;
max-width: 100%;
height: 500px;
background-color: #fff;
border: 1px solid #000;
}
默认情况下,容器的最小宽度为 960 像素,但我使用的是响应式设计,并且 ipad 比 960 像素的宽度更小。使用上面的代码,我认为如果是 iPad,它不会拾取 min-width: 960px; 但它是。
我该怎么做才能使最小宽度仅在非 ipad css 上显示,而在 ipad css 上却不显示最小宽度?