gpt4 book ai didi

html - 使用内联 css 更改 div 内 A 元素的颜色

转载 作者:太空宇宙 更新时间:2023-11-04 14:50:09 25 4
gpt4 key购买 nike

我有一个如下所示的 HTML:

<p style="color:red">go <a href="SomeURLHere">here</a></p>

其中 A 元素是由我无法访问的服务器端代码生成的。在浏览器中 go 是红色的,但 here 不是因为页面 head 元素中的一些 CSS 代码。我想知道是否有一种方法可以使链接颜色继承,而无需在 HTML 文档的不适当位置添加样式标签或 JS 代码,这会很臭。请注意,我无法访问整个文档,只能访问这一部分。

最佳答案

你可以把 style-tags 放在你的 body 中。

<style>
.red, .red a {
color: red !important;
}
<style>

<p class="red">go <a href="#">here</a></p>

关于html - 使用内联 css 更改 div 内 A 元素的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54706748/

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