更新时间:2023-09-12 18:01:52
你们好,最近小艾特发现有诸多的小伙伴们对于css选择器的优先级从高到低是,css选择器这个问题都颇为感兴趣的,今天小活为大家梳理了下,一起往下看看吧。
1、 新文件创建标签选择器
2、 影响
3、 创建类别选择器
4、 影响
5、 创建ID选择器
6、 影响
7、 附加源代码
8、 style
9、 h1{color:red;}
10、 .class{width:100px; height:100px; background:#903; margin-top:20px;}
11、 #id{width:100px; height:100px; background:#06F; margin-top:20px;}
12、 /style
13、 body
14、 H1标签选择器/h1
15、 div class='class '类别选择器/div
16、 div id='id'ID选择器/div
17、 /body
以上就是css选择器这篇文章的一些介绍,希望对大家有所帮助。