@media (min-width: 320px) and (max-width: 580px) {
.post_wrap_bg {
width: 460px;
height: 460px;
}
}
@media (min-width: 10px) and (max-width: 320px) {
.post_wrap_bg {
width: 360px;
height: 360px;
}
}
> 320不起作用,我可能做错了什么?
答案 0 :(得分:4)
你有一个错字:
widht: 460px;
应该是
width: 460px;
修复它,它将按预期工作。
答案 1 :(得分:0)
你应该这样试试,
@media (min-width: 321px) and (max-width: 580px) {
.post_wrap_bg {
width: 460px;
height: 460px;
}
}
@media (min-width: 10px) and (max-width: 320px) {
.post_wrap_bg {
width: 360px;
height: 360px;
}
}