CSS使用not in get all with pattern

时间:2014-02-10 07:55:18

标签: html css css-selectors

我在index.css中有这种风格:

.sidebar-5 {
    background-color: #EDEDED;
    border: 1px solid #999999;
    float: right;
    height: 214px;
    width: 498px;
    border-radius:none !important;
}

我可以使用此样式设置sidebarbox-sml

的所有课程
[class^="sidebar"] , [class^="box-sml"]  :not(#sidebar-5) {
   border-radius: 7px 7px 7px 7px; 
}

[class^="sidebar"] :not(#sidebar-5), [class^="box-sml"] {
   border-radius: 7px 7px 7px 7px; 
}

我想将not()用于跳过#sidebar-5元素,但我不能这样做。如何解决这个问题?

1 个答案:

答案 0 :(得分:0)

使用此:

#sidebar-5{
      border-radius: 0px 0px 0px 0px !important;
    }

或者如果它是一个类:

   .sidebar-5{
      border-radius: 0px 0px 0px 0px !important;
    }