作者:手机用户2502907463 | 来源:互联网 | 2023-06-08 17:36
#footer{width:500px;height:220px;background-color:Red}
div.footer2{width:500px;height:220px;background-color:gray}
id="footer" class="footer2" style="background-color:blue" >
上面的div背景 最终将显示 内联样式style的 blue
如果去掉style属性
id="footer" class="footer2" >
将显示 id选择器 的 Red背景色
所以他们的关系是 内联Style>ID >Class;