CSS媒体查询不适用于较大的屏幕

时间:2014-09-10 18:28:51

标签: css media-queries

我的应用中有一个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。但是,此媒体查询无效。它也适用于大屏幕上的风格。我的媒体查询有什么问题?

0 个答案:

没有答案