CSS-02:基础选择器之标签选择器

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

<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>基础选择器之标签选择器</title>
    <style>
        /* 标签选择器:写上标签名 */
        p {
      
      
            color: darkgreen;
            font-size: 20px;
        }
    </style>
    <style>
        div {
      
      
            color: darkorange;
            font-size: 20px;
        }
    </style>
</head>

<body>
    <p>男生</p>
    <p>女生</p>
    <p>小学生</p>
    <div>男生</div>
    <div>女生</div>
    <div>小学生</div>
</body>

</html>

猜你喜欢

转载自blog.csdn.net/chuan0106/article/details/125544725