慕粉13772057232
2016-05-20 16:52
想问一下 在此处为什么不能用类选择器?非要用ID选择器?谁会给我讲一下吧,谢谢了!
并不是不可以用,用class完全可以。
但习惯上,class表示类,比如:某个div类里面有3个div
×××××××××××××××你新建一个HTML试试××××××××××
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>class or id</title>
<style type="text/css">
.newsWeb{
border:2px blue solid;
width:240px;
height:200px;
padding-top:30px;
}
#sina{
border:2px red solid;
width:200px;
height:20px;
margin-bottom:30px;
}
#netease{
border:2px red solid;
width:200px;
height:20px;
margin-bottom:30px;
}
#tecent{
border:2px red solid;
width:200px;
height:20px;
margin-bottom:30px;
}
</style>
</head>
<body>
<div class="newsWeb">
<div id="sina">sina</div>
<div id="netease">netease</div>
<div id="tecent">tecent</div>
</div>
</body>
</html>
表示关注
可以用类选择器啊
初识HTML(5)+CSS(3)-升级版
1225293 学习 · 18230 问题
相似问题