id="ID名称",到底是这个ID名称不能重复,还是这个ID选择器就只能用一次
id="ID名称",到底是这个ID名称不能重复,还是这个ID选择器就只能用一次
id="ID名称",到底是这个ID名称不能重复,还是这个ID选择器就只能用一次
2016-10-27
#a{
width:2000px;
height:10000px;
border:2px red solid;
}
#a1{
width:200px;
height:100px;
border:2px black solid;
}
#a2{
width:200px;
height:100px;
border:2px black solid;
}
#a3{
width:200px;
height:100px;
border:2px purple solid;
}
<div id="a">
<div id="a1"></div>
<div id="a2"></div>
<div id="a3"></div>
</div>
举报