这是我的媒体查询部分CSS代码。
@media (min-width:320px) and (max-width:575px){
.chakra{
width: 100%;
float: unset;
margin: auto;
}
}
答案 0 :(得分:0)
也许也尝试添加媒体
例如
@media screen and (min-width:320px) and (max-width:575px){
.chakra{
width: 100%;
float: unset;
margin: auto;
}
}