当您可以使用类完成相同的任务时,为什么还要使用 ID?
我的意思是,好的,我知道 ID 只供一次性使用,而类则供很多次使用,但是是什么禁止我只使用一次类选择器?那么,据此,CSS中ID存在的目的是什么?
此外,当我们可以在样式表中创建具有完全相同属性的新元素时,我们需要 ID 甚至类来做什么?
以下代码是我要询问的示例:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>ID's, classes and new elements</title>
<style>
#sidebar1 {
display: block;
background-color: yellow;
width: 200px;
height: 500px;
margin-right: 50px;
float: left;
}
.sidebar2 {
display: block;
background-color: yellow;
width: 200px;
height: 500px;
margin-right: 50px;
float: left;
}
new_element {
display: block;
background-color: yellow;
width: 200px;
height: 500px;
margin-right: 50px;
float: left;
}
</style>
</head>
<body>
<div id="sidebar1">What is the difference?</div><!--Use of ID selector-->
<div class="sidebar2">What is the difference?</div><!--Use of class selector just once !-->
<new_element>What is the difference?</new_element><!--Use of a new made element with exactly the same attributes-->
</body>
</html>