CSS 添加子类到 h4
我有一个 h4 标题,选择它后我想更改它的背景颜色。我尝试过遵循 css 但它不起作用。错误的部分在哪里?
.sub_topic h4 {
margin:0 0 0 20px;
color: #fff;
width:120px;
text-align: center;
background-color: #4e7ac7;
border: 3px solid #4e7ac7;
height:20px;
}
.sub_topic h4 .chosen {
background-color: #a0be29;
border: 3px solid #a0be29;
}
我也只尝试了 .chosen
,然后将其添加到
但它不起作用。
I have a h4 title, when it's chosen i want to change it's background color. I've tried following css but it didnt work. Where is wrong part?
.sub_topic h4 {
margin:0 0 0 20px;
color: #fff;
width:120px;
text-align: center;
background-color: #4e7ac7;
border: 3px solid #4e7ac7;
height:20px;
}
.sub_topic h4 .chosen {
background-color: #a0be29;
border: 3px solid #a0be29;
}
I also tried only .chosen
and then adding it to <h4>
but it didn't work.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题
而不是
this should do the trick
instead of
尝试使用
h4.chosen
而不是h4 .chosen
所有 CSS 属性看起来都不错。
Try
h4.chosen
instead ofh4 .chosen
All of your CSS attributes look okay.