修改!important定义的样式

Posted oneduan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改!important定义的样式相关的知识,希望对你有一定的参考价值。

技术分享
 1 <!DOCTYPE html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <meta name="viewport" content="width=device-width, initial-scale=1.0">
 6     <meta http-equiv="X-UA-Compatible" content="ie=edge">
 7     <title>Document</title>
 8     <style> 
 9         .test {
10             background: red !important;
11         }
12     </style>
13 </head>
14 <body>
15     <div class="test" style="background: yellow !important;">
16         <div class="container">
17             我是一个测试
18         </div>
19     </div>
20 
21 
22 
23 
24     <script src="./jquery-3.2.1.min.js"></script>
25     <script>
26         var sts = $(".test").attr("style") + background:blue !important;;
27         $(".test").css("cssText", sts);
28         console.log($(".test"));
29     </script>
30 </body>
31 </html>
32   
View Code

最终的背景色为蓝色,需要的朋友可以直接复制代码查看效果

以上是关于修改!important定义的样式的主要内容,如果未能解决你的问题,请参考以下文章

使用highlightjs_markdown编辑器自定义博客园代码高亮

如何修改element.style样式

使用 jQuery 修改 css 中带有 !important 的样式属性

VS Code中自定义Emmet代码片段

头部搜索导航布局, 修改主题样式

iframe中嵌套的网页样式修改