0

所以我在 Wordpress 中设置了这个 posttype 的样式,当用户链接到 soundcloud 轨道时,该轨道将显示在帖子标题中。现在,如果该用户发布了多个链接,我希望下一个链接出现在帖子的内容中,不包括已经出现在标题中的第一个链接。

这是粗暴的输出:

<div class="content">
    <p><iframe/></p>
    <p><iframe/></p>
    <p><iframe/></p>
    <p><iframe/></p>
</div>

如何在 CSS 中设置它的样式,以便只显示最后三个 iframe?

迈克尔

4

1 回答 1

2

尝试这个:

.content:first-child{
    display: none;
}
于 2013-07-29T02:03:23.307 回答