CSS 添加子类到 h4

发布于 2024-12-29 11:00:57 字数 431 浏览 0 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

¢好甜 2025-01-05 11:00:57

这应该可以解决问题

h4.chosen

而不是

h4 .chosen

this should do the trick

h4.chosen

instead of

h4 .chosen
×纯※雪 2025-01-05 11:00:57

尝试使用 h4.chosen 而不是 h4 .chosen

所有 CSS 属性看起来都不错。

Try h4.chosen instead of h4 .chosen

All of your CSS attributes look okay.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文