我有一個h4標題,當它被選中時,我想改變它的背景顏色。我試過下面的CSS,但它沒有奏效。哪裏錯了?Css將子類添加到h4
.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>
,但沒有奏效。
當你的意思是添加你的意思是h4 + .chosen – theliberalsurfer 2012-01-29 03:58:20