05-类选择器-多类名

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>多类名的使用方式</title>
    <style>
       .red{
           color: red;
       }
       .font35{
           font-size: 40px;
       }
    </style>
</head>
<body>
    <div class="red font35">刘德华</div>
</body>
</html>

 

posted @ 2021-08-07 16:59  hycsuper  阅读(55)  评论(0)    收藏  举报