我的html sode片段是
<div id="head">
<span id="span1"> </span>
<span id="span2"> </span>
</div>
字符集
我没有得到我的CSS工作。
#head>#span1{
//its not working.
}
型
我也试
#head1:nth-child(1){
width: 200px;
height: 300px;
background-color: #0000FF;
}
#head1:nth-child(2){
width: 300px;
height: 300px;
background-color: #0000FF;
}
型
请帮帮我。
2条答案
按热度按时间xiozqbni1#
尝试使用
#head span
选择所有<span>
检查这个demo。
个字符
尝试使用
#head #spanN
选择N<span>
的字符串
x8goxv8g2#
<span>
在一个内联元素中,所以你需要设置display:block
来做适当的样式(如果你需要宽度和高度)。如果你有id,你需要在你的CSS中做的就是针对这些id。个字符