gpt4 book ai didi

html - 覆盖为 HTML 标签设置的 CSS 样式

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

我的页面引用了定义如下的 CSS 样式表:

html {background-color:#FFFFFF;background-image:url('../images/Background.png');background-repeat:repeat-x; } 

如何在页面级别覆盖 background-image 元素?我需要在我的应用程序中只覆盖一个页面的设置。

最佳答案

向 html 元素添加一个类,然后使用一些内联样式来覆盖外部样式表的样式。您也可以将内联样式放在外部样式表中,这是最佳做法。

<html class="myHtmlTag">
<head>
<link href="externalStyle.css" rel="stylesheet"/>
<style>
html.myHtmlTag{
background: none !important;
background-image:none !important;
}
</style>
</head>
<body></body>
</html>

关于html - 覆盖为 HTML 标签设置的 CSS 样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12810227/

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