gpt4 book ai didi

jquery - 为什么 jQuery 不应用边框样式?

转载 作者:太空宇宙 更新时间:2023-11-03 20:00:46 25 4
gpt4 key购买 nike

我想知道为什么在我应用 addCLass 方法时 JQuery 没有应用 border-bottom css 属性。它应用颜色但不应用边框。这是为什么?JSFiddle:http://jsfiddle.net/egh7a/

谢谢。

html

<section class="news">
<article>one</article>
<article>two</article>
<article>three</article>
<article>four</article>
</section>

jQuery

$(".news article:last").addClass("two");

CSS

.news {
border-top: 1px solid #777;
}

.news article {
padding-top: 10px;
padding-bottom; 10px;
border-bottom: 1px dashed #999;
}

.two {
color: red;
border-bottom: black solid 2px;
}

最佳答案

文章项采用更具体的 css 规则的样式。

在这种情况下,.news article.two 更具体。

尝试将您的 .two 类更改为 .news .two

关于jquery - 为什么 jQuery 不应用边框样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17400079/

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