我把DIV要素nes开,对此我不了解nes。 我需要各自具有与其父母不同的背景,从而形成一种类似于黄色的颜色。 我只利用两个背景——黑暗和白色。 其影响必须类似于杂草,甚至儿童在集装箱内,但在我的情况下,儿童被nes。 我可以这样做,就每个要素制定规则,例如:
div div div div {
background-color: #fff;
}
div div div {
background-color: #aaa;
}
div div {
background-color: #fff;
}
div {
background-color: #aaa;
}
But I m looking for more elegant solution. Can this be done only with CSS? Do I need javascript?
任何建议都将受到高度赞赏。
Edit: I am looking for a solution which will not require the elements to have a class, since they will need to be rearranged with drag & drop (javascript)