gpt4 book ai didi

html - CSS 使用 not in get all with 模式

转载 作者:太空宇宙 更新时间:2023-11-03 18:21:48 24 4
gpt4 key购买 nike

我的 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 元素,但我做不到。如何解决这个问题?

最佳答案

使用这个:

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

或者如果它是一个类:

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

关于html - CSS 使用 not in get all with 模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21671704/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com