我在遵循CSS规则时遇到了解析错误:
@media screen (max-width: 350px) {
h2 {
font-size:1.5em;
}
}
我缺少什么?
答案 0 :(得分:4)
您错过了and
和only
。
尝试:
@media only screen and (max-width: 350px) {
h2 {
font-size:1.5em;
}
}
答案 1 :(得分:1)
只需删除screen
:
@media (max-width: 350px) {
h2 {
font-size:1.5em;
}
}
答案 2 :(得分:0)
你测试这个例子
@media screen and (min-width: 321px) and (max-width:960px){
h2 {
font-size:1.5em;
}
}