CSS 的权重值
###位置优先级
1
| (内联样式)Inline style > (内部样式)Internal style sheet > (外部样式)External style sheet
|
当 html 元素的 class 在调用样式时,权重值越大优先级越高,尤其是一个 class 有多个类时,和 class 名的调用顺序无关。下面的调用结果是一样的:
1 2
| <div class="box container"></div> <div class="container box"></div>
|