最后一个子级或最后一个类型的伪类不起作用,为什么?

发布于 2024-12-08 19:51:44 字数 218 浏览 0 评论 0原文

我只是设置了一个我遇到问题的快速示例,现在我有一些元素添加了一些样式,我有一个类,我尝试将样式应用于该特定类的最后一个子类。我遇到的问题是,当我在该类之后有任何类型的元素时,最后一个子元素不起作用,这是我的小提琴 在这里小提琴显示我的问题,为什么当类后面跟着其他元素时我的最后一个子级或最后一个类型不能工作

I just set up a quick example of a issue I am having trouble with, right now I have some elements that have some styling added to them, I have a class that I am try to apply a style to last child of that particular class. The issue I have is the last-child is not working when I have elements of any type after that class, here is my fiddle fiddle here showing my issue, why wont my last-child or last-type-of work when the class is followed by other elements

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尬尬 2024-12-15 19:51:44
p.test + *
{
    color:red;
    font-style:italic;
    font-size:40px;
}
p.test + p.test
{
    color:black;font-style:normal;font-size:inherit;
}

http://jsfiddle.net/GCAf2/1/

p.test + *
{
    color:red;
    font-style:italic;
    font-size:40px;
}
p.test + p.test
{
    color:black;font-style:normal;font-size:inherit;
}

http://jsfiddle.net/GCAf2/1/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文