css优先级

<style>

h1{color:black}
#wf{color:yellow}
#wf h1{color:blue}
.wf{color:green}

</style>

<div id="wf" class="wf">
    <h1 style="color:red">whofirst</h1>
</div>

请问whofirst是什么颜色呢?

原文地址:https://www.cnblogs.com/xiezhanggen/p/2574804.html