如何为元素和他的一些后代设置样式?例如:
.datepick-month-header, .datepick-month-header select, .datepick-month-header input {
background-color: black;
color: #fff;
font-weight: bold;
}
在较少的文档中,我发现嵌套样式效果很好,但我想同时选择 $this 和后代。
.datepick-month-header {
select, input { // this selects "select" and "input",
}
}
如何在一个声明中设置所有三个元素(父、子)?
谢谢你