我正在创建一个wordpress主题。 我有一个带有“post-item”类的包装div,在一个循环7次的wordpress循环中。 每个“div.post-item”都有一个顶部边框。 我希望“div.post-item”没有边框,所以我写了以下内容:
.post-item:first-child {
border:none;
}
不幸的是,这没有做任何事。 我仍然试图记住所有这些伪选择器,所以它可能有点令人困惑。 将“first-of-type”作为我正在寻找的选择器吗?
此致
迪安