我正在制作iphone和ipad的网页,说我有以下CSS:
#somediv {
background-color: white;
}
@media only screen and (max-device-width: 1024px) and (orientation:landscape) {
#somediv {
color:red;
}
}
@media only screen and (max-device-width: 1024px) and (orientation:portrait) {
#somediv {
color:green;
}
}
我有两个问题: 1)如何使我可以使用jquery选择器更改somediv的所有属性以具有“color:blue”?
2)我如何使它只有方向:肖像一是“颜色:蓝色”?