这篇文章主要介绍了HTML分组有哪些的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇HTML分组有哪些文章都会有所收获,下面我们一起来看看吧。
分组提供了一些有意思的选择。例如,下例中的所有规则分组都是等价的,每个组只是展示了对选择器和声明分组的不同方法:
h2 {color:silver; background:white;}
h3 {color:silver; background:gray;}
h4 {color:white; background:gray;}
h5 {color:silver; background:white;}
b {color:gray; background:white;}
h2, h3, h5 {color:silver;}
h3, h4 {background:gray;}
h2, h5, b {background:white;}
h4 {color:white;}
b {color:gray;}
h2, h5 {color:silver; background:white;}
h3 {color:silver;}
h4 {color:white;}
h3, h4 {background:gray;}
b {color:gray; background:white;}
关于“HTML分组有哪些”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“HTML分组有哪些”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注编程网行业资讯频道。