我不知道为什么我的响应式设计不适用于最大宽度为 320 像素的尺寸。我正在 Chrome 中为 iPad 尝试不同的尺寸并且工作正常,但 iPhone 出错了。我的代码如下:
<link rel="stylesheet" type="text/css" href="css/styles.css" />
<link rel="stylesheet" type="text/css" href="css/iPhonePortrait.css" media="only screen and (max-width : 320px) and (orientation : portrait)" />
<link rel="stylesheet" type="text/css" href="css/iPadLandscape.css" media="only screen and (max-width : 1024px) and (orientation : landscape)" />
<link rel="stylesheet" type="text/css" href="css/iPadPortrait.css" media="only screen and (max-width : 768px) and (orientation : portrait)" />
浏览器更新了,你知道吗?