样式优先级
Posted where there is a will, there i
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了样式优先级相关的知识,希望对你有一定的参考价值。
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <style> .c{color:red!important;} </style> </head> <body> <div class="c" style="color:blue;">内联style样式无法覆盖样式表中的important,内容显示为红色,而不是内联样式设置的蓝色</div> </body> </html>
important的优先级>style行间样式
以上是关于样式优先级的主要内容,如果未能解决你的问题,请参考以下文章