gpt4 book ai didi

html - 为什么 !important 在我的样式表上不起作用?

转载 作者:行者123 更新时间:2023-12-01 13:10:56 24 4
gpt4 key购买 nike

我是 CSS/HTML 的新手,需要一些样式方面的帮助。所以我有一个 CSS 样式表,我在其中做了类似的事情

p{
color:black;
}

然后在我的 HTML 中,在页脚标记内,我有一个段落。

我遇到的问题是我希望页脚内的段落颜色为蓝色。

我试过这样做:

footer{
color: blue !important;
}

但它没有用,所以我想知道如何才能让页脚中的段落为蓝色,因为我希望其余段落为黑色。

如果 !important 方法是错误的方法,我想知道为什么?根据我的研究,我认为它应该覆盖任何以前的样式。

最佳答案

回答:

Why is !important not working on my stylesheet?

它按照设计完美运行​​。

How I can get just the paragraph in my footer to be blue

为此,请使用适当的选择器。

footer p{
color: blue;
}

关于html - 为什么 !important 在我的样式表上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59999376/

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