.item:last-child {
background-color: inherit;
}
使用伪元素last-child
这是working jsfiddle
或者,您可以为span
元素而不是p
使用不同的html标记(如li
,.item
或div
显示为块)将它们与其他div
元素区分开来,然后你可以做类似的事情:
#lastQuestions li:last-of-type {
background: none;
}
选择它。
quick illustration
编辑:
根据您的jsfiddle,您的代码中只有.item
个元素属于div
类型,因此它们的类型与#lastQuestions
的所有其他子元素不同。所以你可以试试这个:
#lastQuestions > div:last-of-type {
background: none;
}