作为一个例子,如果我想让Text1是红色的,但不是Text2:
<div class="red"> Text1 <p class="notred">Text2</p> </div>
我在css中尝试了这个:
.red :not(.notred) {
color: #ff0000;
}
尝试这个,它不应用样式Text1或Text2。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
<!DOCTYPE html> <html> <style> .red { color: #ff0000; } .notred{ color: #000000; } </style> <body> <div class="red"> Text1 <p class="notred">Text2</p> </div> </body> </html>你可以这样做。