给每个孩子一个身份证,然后用它来分配颜色
HTML是:
<div id="outer">
<div>
<div id="child1">1</div>
<div id="child2">2</div>
<div id="child3">3</div>
</div>
<div>
<div id="child4">4</div>
<div id="child5">5</div>
<div id="child6">6</div>
</div>
<div>
<div id="child7">7</div>
<div id="child8">8</div>
<div id="child9">9</div>
</div>
</div>
CSS是:
#child1{
background-color: red;
color:red;
}
#child2{
background-color: blue;
}
#child3{
background-color: green;
}
#child4{
background-color: pink;
}
#child5{
background-color: yellow;
}
#child6{
background-color: white;
}
#child7{
background-color: black;
}
#child8{
background-color: orange;
}
#child9{
background-color: red;
}