首页 > 代码库 > Test_赋值多个class选择器

Test_赋值多个class选择器

ZC: 元素属性"class"中,可以赋值 多个 class选择器

ZC: 多个选择器,相同的属性设置,哪个起作用:晚定义的起作用

 

1、代码

<!--内联 HTML5--><!DOCTYPE html><html><head>    <meta charset="UTF-8">
<style type="text/css"> .bgc01 { width :500px; height : 200px; background-color :blue; border:5px solid red; } .bgc02 { background-color :silver; } </style></head><body> <div class="bgc01 bgc02"></div> <br/> <div class="bgc02 bgc01"></div></body></html>

 

2、效果图:

技术分享

3、

4、

5、

 

Test_赋值多个class选择器