前端开发类选择器 多个类

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>我是中国人</title>
        
        <style>
            /* 类选择器 */
            .web {
                background-color: red;
            }
            
            .demo {
                color: yellow;
            }
        </style>
    </head>
    <body>
        <p class="web demo">这是个段落标签</p>
        <h1>这是个标题标签</h1>
        
        <div class="web">
            这是一个div
        </div>
    </body>
</html>

image

posted @ 2020-10-09 12:59  thomas_blog  阅读(142)  评论(0编辑  收藏  举报