Forum Moderators: not2easy
Is it alright to not have a class or id defined but still give it a class or id value? Like this:
<div class="red">
<div class="square">
some stuff
</div>
</div>
Now, there will *not* be a div.red in the CSS but there will be this:
div.red div.square {some stuff}
So I am just using it for context. It seems to work fine but I wanted to be sure.
Take care,
Emperor