重新审视圆序列的正确性
P粉921165181
P粉921165181 2024-02-04 09:20:06
[CSS3讨论组]

我预计圆圈是1,2,3和4,但输出是4,1,2和3。我不知道是否是position:absolute;导致它发生。欢迎收到任何反馈。




https://stackblitz.com/edit/quasarframework-bybqfg?file=src%2Fpages%2FIndexPage.vue

P粉921165181
P粉921165181

全部回复(1)
P粉155710425

.circle:nth-child(n) 选择满足以下条件的元素:

  • 有类circle
  • 是其父级的第 n 个子级。

你的 DOM 看起来像这样:

  • .q-card__section // :nth-child(1)
  • .circle:内容 1 // :nth-child(2)
  • .circle:内容 2 // :nth-child(3)
  • .circle:内容 3 // :nth-child(4)
  • .circle:内容 4 // :nth-child(5)

您可能会得到预期结果 通过将 .circle 包装在单独的容器中:

  • .q-card__section // :nth-child(1)
  • div // :nth-child(2)
    • .circle:内容 1 // :nth-child(1)
    • .circle:内容 2 // :nth-child(2)
    • .circle:内容 3 // :nth-child(3)
    • .circle:内容 4 // :nth-child(4)
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号