我在index.css中有这种风格:
.sidebar-5 {
background-color: #EDEDED;
border: 1px solid #999999;
float: right;
height: 214px;
width: 498px;
border-radius:none !important;
}
我可以使用此样式设置sidebar
和box-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
元素,但我不能这样做。如何解决这个问题?
答案 0 :(得分:0)
使用此:
#sidebar-5{
border-radius: 0px 0px 0px 0px !important;
}
或者如果它是一个类:
.sidebar-5{
border-radius: 0px 0px 0px 0px !important;
}