如何使用SASS或CSS3在所有CSS属性中放置!important?

时间:2014-11-24 19:21:31

标签: css css3 twitter-bootstrap ipad sass

我正在使用BootStrap @include ipad 的属性以及SASS来为各种样式定义Ipad的电源。

我想知道是否有一种方法让我为任何类(或其他任何)中的所有属性创建一些变量或更高级的东西!重要?

示例:

p {
   white-space: normal;
   height: auto;
    @include ipad {
     width: 280px !important;
     overflow: hidden !important;
     text-overflow: ellipsis !important;
     white-space: nowrap !important;
     }
}

当SASS编译CSS时,它在所有属性中自动!important

感谢!

1 个答案:

答案 0 :(得分:2)

没有。 Sass没有将!important标志应用于任何给定选择器的规则的编程方式。

p {
   white-space: normal;
   height: auto;
   @include ipad {
        body & {
            width: 280px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
    }
}