我正在建立响应式网站的初始基础。我已经指定了手机和平板电脑的尺寸,但不确定如何处理桌面版本:
移动的
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
}
药片
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) {
}
这两个在尺寸方面是否正确设置(大致行业标准,我知道没有这样的!)?如何为桌面指定 1024px 以上的版本?
/* Mobile */
@media (min-width:320px) {
.tester {
width:100%;
height:500px;
background-color:white;
}
}
/* Tablet */
@media (min-width:640px) {
.tester {
width:100%;
height:500px;
background-color:red;
}
}
/* Desktop */
@media (min-width:960px) {
.tester {
width:100%;
height:500px;
background-color:blue;
}
}