SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>CSS选择器练习</title>
    <style type="texy/css">
         .title{
            color:red
         }
         div.title{
             text-decoration:underline;
         }
    </style>
</head>
<body>
    <h3 class="title">我是标题3里面的文字</h3>
    <div class="title">我是div1里面的文字</div>
    <div>我是div2里面的文字</div>
    <p class="title">我是p里面的文字</p>
</body>
</html>