我试图给每组一个随机的颜色。
这是我正在处理的网站。这些课程不是硬编码的,而是从数据库获取的。
http://193.191.177.139/agenda.html
这是我尝试过的方法,因为我不知道如何处理随机颜色,但是我什至无法使它正常工作:
.vis-foreground .vis-group .vis-item .vis-item-overflow :nth-child(even) { background: blue;}
.vis-foreground .vis-group .vis-item .vis-item-overflow :nth-child(odd) { background: red;}
有谁知道如何从随机颜色开始?
最佳答案
您不应该在:nth-child和选择器之间留空格。
代码应该是这样的。
.vis-foreground .vis-group .vis-item .vis-item-overflow:nth-child(even) { background: blue;}
要么
根据您要定位的选择器
.vis-foreground .vis-group .vis-item:nth-child(even) { background: blue;}
关于css - 每个div组CSS的随机颜色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52703380/