我需要您的帮助,了解如何为我的评论系统替换背景颜色。这样红色和蓝色将在其他元素中交替出现。到目前为止,这就是我想要做的工作,但没有成功。
感谢您的时间和耐心。
#comment :nth-child(odd) {
background-color: red;
}
#comment :nth-child(even) {
background-color: blue;
}
#comment {
color: green;
margin: 5px auto;
padding: 5px auto
width: 100px;
}