gpt4 book ai didi

html - 另一个元素内的 css 选择器

转载 作者:太空宇宙 更新时间:2023-11-04 14:19:10 26 4
gpt4 key购买 nike

自定义按钮内有两种颜色,第一种由按钮类定义,第二种由按钮内的跨度类定义,当按钮处于事件状态时如何更改这两种颜色?

CSS:

.buttonClass{
color:black;
}
.buttonClass:active{
color:white;
}
.spanClass{
color:grey;
}
.spanClass:active{ //working only when I click on span, but not for whole button
color:red;
}

HTML:

<button class="buttonClass">
<span class="spanClass">
black/white text
</span>
grey/red text
</button>

最佳答案

试试这个

.buttonClass:active .spanClass{
color:red;
}

关于html - 另一个元素内的 css 选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16712709/

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