0
我是新來的媒體查詢。有誰知道爲什麼這些iPhone 6和iPhone 5媒體查詢相互衝突。我錯誤地添加了查詢?我計劃添加橫向查詢以及其他屏幕尺寸。iPhone媒體查詢
/********* IPHONE 6 PORTRAIT**********/
@media only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : portrait) {
.topten {
width: 100%;
height: 1115px;
float: left;
}
.submenu {
width: 100%;
float: left;
}
.toptenItem {
width: 50%;
height: 16.683%;
}
.imageDIV {
height: 45%;
}
.imageDIV img {
margin-top: 25px;
height: 100%;
}
.mealTitlePrice {
height: 55%;
padding-left: 10px;
}
.mealTitle {
height: 20%;
margin-top: 20%;
}
.mealTitle h1 {
font-size: .55em;
font-weight: bold;
}
.mealPrice {
margin-top: px;
}
.mealPrice h4 {
padding-top: 2px;
}
}
/********* IPHONE 5 PORTRAIT**********/
@media only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : portrait) {
.topten {
width: 100%;
height: 1115px;
float: left;
}
.toptenItem {
width: 50%;
height: 16.683%;
}
}
如果我在iPhone 6上修改了一些查詢,iPhone 5的內容也被修改了。 –