📜  css not last of type - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:28.254000             🧑  作者: Mango

代码示例1
li {
  color: goldenrod;
}

li:not(:last-of-type) {
  color: lightgrey;
}