我是使用媒体查询的新手。 我正在一个网站上工作,我希望它能在Ipad上正确显示。
I have tried this,
//css use for Ipad
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px) {
.overlayBox{
width:200px;
}
}
// css use for Window
.overlayBox{
width:450px;
}
但我遇到的问题是媒体查询对Ipad不起作用。需要窗口css。 我做错了吗?
答案 0 :(得分:1)
使用device-width
和device-height
定位特定设备,然后使用orientation
定位纵向或横向。
@media only screen and (device-width: 768px) and (device-height: 1024px) and (orientation: portrait) {
.myrules {
width: 200px;
}
}