我想使一個網站響應iPhone 7的問題是,我的媒體查詢工作時,它不應該;對於iPhone 7,我使用的是max-width: 320px
,但他的真實分辨率是375px(至少在https://mydevice.io/devices/中顯示),那麼爲什麼我的媒體查詢應用? 375px是大於320像素我最大寬度的媒體查詢應用時,它不應該
/* iPhone 7 */
@media screen and (max-width: 320px) {
.qr_popup {
left: 50%;
top: 200px;
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 10px;
background: #ededed;
width: 85%;
position: relative;
box-shadow: 0px 0px 3px white;}}
/* Galaxy */
@media screen and (min-width: 360px) {
.qr_popup {
left: 50%;
top: 250px;
transform: translate(-50%, -50%);
padding: 10px;
border-radius: 10px;
background: #ededed;
width: 85%;
position: relative;
box-shadow: 0px 0px 3px white;}}
不同是在頂部:250像素;
我不認爲需要創建一個與onyl 30px差異的新媒體查詢。也許是最好的,以移動的第一個aproach。從最小的媒體查詢開始,並建立起來。 – Keutelvocht