我的应用中有一个CSS媒体查询无效。媒体查询如下所示:
.categories {
background-color: #2E2E2E;
padding-left: 0px;
padding-right: 0px;
}
@media only screen and (max-width: 90.063em) {
.categories {
margin-left: 1rem;
margin-bottom: 0.6rem;
width:75%;
}
}
基本上,每当屏幕尺寸为90.063em或更少时,我希望宽度为75%,左边距为1rem。但是,此媒体查询无效。它也适用于大屏幕上的风格。我的媒体查询有什么问题?