Think of University.
<student id="JonathanSampson" class="Biology" />
<student id="MarySmith" class="Biology" />
Student ID cards are distinct. No two students on campus will have the same student ID card. However, many students can and will share at least one Class with each other.
It's okay to put multiple students under one Class title, Biology 101. But it's never acceptable to put multiple students under one student ID.
When giving Rules over the school intercom system, you can give Rules to a Class:
"Would the Biology class please wear Red Shirts tomorrow?"
.BiologyClass {
shirt-color:red;
}
Or you can give rules to a Specific Student, by calling his unique ID:
"Would Jonathan Sampson please wear a Green Shirt tomorrow?"
#JonathanSampson {
shirt-color:green;
}