实例 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>CSS语法和常用选择器优先级</title> </head> <body> 行内标签选择器 <h3 style="background-color:aqua; color:red">样式规则 = 选择器 + 声明</h3> <br> 类选择器 <h3 class="bg-red" style="background-color:red; color:royalblue">样式规则 = 选择器 + 声明</h3> id选择器 <h3 id="id-blue" style="background-color:rgb(0, 255, 13); color:blueviolet">样式规则 = 选择器 + 声明</h3> <style> /* 类选择器 */ .bg-red{ background-color: black } /* ID选择器 */ #id-blue{ background-color: blue } </style> </body> </html> 运行实例 » 点击 "运行实例" 按钮查看在线实例