css CSS:not - last-child - nth-child(1) - last-of-type
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了css CSS:not - last-child - nth-child(1) - last-of-type相关的知识,希望对你有一定的参考价值。
ul {
list-style-type: none;
text-align: center;
}
li {
display: inline;
}
li:not(:last-child):after {
content:' |';
}
li:nth-child(1):after {
content:' |';
}
p:last-of-type {
background: #ff0000;
}
以上是关于css CSS:not - last-child - nth-child(1) - last-of-type的主要内容,如果未能解决你的问题,请参考以下文章
如何在 CSS 中正确使用 not 选择器 [重复]
Css 伪类 input:not(disabled)not:[type="submit"]:focus
带有 :not 选择器的 CSS 在作为 jquery 选择器放置时工作,而不是纯 CSS [重复]
CSS 否定伪类 :not() 用于父/祖先元素
:not() 伪类的 CSS 特性
CSS :not(:last-child):after 选择器