[CSS]important提升直选标签优先级

    <style>
        #identity{
            color: purple;
        }
        p {

            color: yellowgreen !important;
        }
    </style>
    <!--
    1. 用于提升某个直接选中标签的选择器中的某个属性的优先级为最高(只能用于直接选中)
    2. 通配符也属于直接选中
    3. 只能提升被指定的属性的优先级
    4. !important必须写在;之前
    5. !important前面的!必须保留
    -->
    <ul>
        <li>
            <p id="identity" class="para">我是段落</p>
        </li>
    </ul>
原文地址:https://www.cnblogs.com/leoshi/p/12346436.html