gpt4 book ai didi

css - 嵌套 CSS 问题

转载 作者:太空宇宙 更新时间:2023-11-04 15:02:39 24 4
gpt4 key购买 nike

我创建了 fiddle 来展示示例:我想我正在设置父级 CSS,然后应用子级的 CSS。但它似乎被忽略了。

http://jsfiddle.net/8PWNw/2/

<div id="displaybox" class ="displaybox" style="display: none;">
<div class = "parent" >
<a href="reply.php?id=1">Parent 1</a>
</div>
<span class ="child" style="padding: 0 10 "><a href="reply.php?id=3">Child 1</a></span>
<div class = "parent" >
<a href="reply.php?id=2">Parent 2</a>
</div>
<span class ="child" style="padding: 0 10 "><a href="reply.php?id=4">Child 1</a></span>
</div>

请指教。我是 CSS 新手,所以我需要学习很多东西。

最佳答案

CSS 中的第 23 行:

/* this is actually saying element with both 'parent' and 'a' class */

.displaybox .parent.a {
color: black;
}

你的意思可能是:

/* this is actually saying all 'A' elements within element with 'parent' class */

.displaybox .parent a {
color: black;
}

这就是为什么您的“A”元素样式被忽略的原因。

关于css - 嵌套 CSS 问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16274164/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com