Priority use of CSS

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>样式优先的优先级别</title>
    <style>
        p{
              color:lightgreen;
              font-weight: lighter;
        }
        </style>
</head>
<body>
    <p style="color:lightcoral;font-weight: bolder">
        这是一个段落内容
        </p>
</body>
</html>

By our results page shows our inline mode is a priority in outreach mode, said here outreach model includes two our way, when parsing the page is the same

Guess you like

Origin blog.csdn.net/qq_40354578/article/details/93471626