我有一个可调整大小的容器(按钮)。里面有2个按钮,其中1个带有动态文本。

在我的scss中,我想检查容器的宽度是否

Buttons {
            height: 100%;
            margin: 0 auto;
            width: auto;
            text-align: center;
        }

Button {
        @include box-sizing;

        margin: 9px 9px 9px 9px;
        min-width: 60px;

        &.hot {
            margin-left: 9px;
        }
    }

最佳答案

根据我的经验以及您对问题的理解,您必须在类“ Button”的类内部使用媒体查询

09-13 02:39