I have the following HTML:
<tr class="brand">.....
Depending on the user that is logged in, this "brand" class may not need to contain anything. So I have different styles sheets for different types of users.
User1.css:
.brand {
display: none;
}
User2.css:
.brand {
}
Do I actually need to bother setting the .brand rule in User2.css? Will it show up an invalid markup?
Thanks