1. 主页
  2. 文档
  3. CSS
  4. CSS3选择器
  5. 层叠性

层叠性

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        p {
            color: red;
        }

        .spec {
            font-style: italic;
        }

        #para {
            text-decoration: underline;
        }
    </style>
</head>

<body>
    <p id="para" class="spec">我是段落</p>
</body>

</html>
这篇文章对您有用吗?

我们要如何帮助您?