...
Code Block | ||
---|---|---|
| ||
<div id="FOOsubmit" class="BTNplain">
or
<div class="BTNbutton SHADOWon"> |
These are useful in CSS because we can write CSS rules using CSS selectors to target the presentation of these elements. We can also use these attributes to target actions based in Javascript.
When should one use one or the other, I think the intent is that:
id is meant to be when there is a single unique instance of something.
class is meant to be when we have category of elements.
Hmmm.
To me it feels like this could be a place where the designers of HTML might have solved a problem they didn’t fully understand and put in more features into HTML that we needed.
If we make use of namespaces could we get away with only using the class attribute and therefore simplifying our overall design?