css!important在媒体查询中未覆盖

时间:2019-07-18 12:25:33

标签: css

因为我在CSS中使用了两个!important,所以无法对ipad pro进行媒体查询。

@media only screen and (min-device-width: 1366px) and (max-device-height: 1024px) and (-webkit-min-device-pixel-ratio: 2)  and (orientation: landscape)  {
svg#specilid {
    width: 230px !important;
    margin-left: -25px !important;
    margin-top: -15px !important;
}
}

svg#specilid {
    width: 230px !important;
    margin-left: 0px !important;
    margin-top: -15px !important;
}

如果是普通台式机,我想将左边距设置为“ 0”。如果是ipad pro,则左边距为“ -25px”。

我对普通查询和媒体查询都使用!important。

我要在两个地方都重要!

如果我使用ipad专业版,则仅存在普通的CSS(“ margin-left:0px!important”)。它没有覆盖。

1 个答案:

答案 0 :(得分:0)

首先添加不带媒体查询的CSS,然后在下方添加媒体查询

svg#specilid {
    width: 230px !important;
    margin-left: 0px !important;
    margin-top: -15px !important;
}

@media only screen and (min-width: 1366px){
    svg#specilid {
        width: 230px !important;
        margin-left: -25px !important;
        margin-top: -15px !important;
    }
}