Css将子类添加到h4

时间:2012-01-29 03:54:12

标签: css class

我有一个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,然后将其添加到<h4>,但它无效。

2 个答案:

答案 0 :(得分:7)

这应该可以解决问题

h4.chosen

而不是

h4 .chosen

答案 1 :(得分:1)

尝试使用h4.chosen代替h4 .chosen

所有CSS属性都可以。