:last-child不选择最后一个元素

时间:2012-08-24 19:05:47

标签: css css-selectors

我想删除上一个figure元素的背景:

@media (min-width: 50em) {
  #mission #press figure {
    padding-left: 0;
    background: url('/assets/img/splash-green.png?1345829368') no-repeat 50% bottom;
  }
  #mission #press figure:last-child {
    background: none;
  }
}

背景仍然显示出来。我错误定位了吗?

1 个答案:

答案 0 :(得分:18)

我认为您实际上可能正在寻找last-of-type而不是last-child的功能。

LINK