vote up 1 vote down star

Is the "id" attribute allowed in microformats? Example (hCard microformat):

<div class="tel" id="voice">
  <span class="type">Voice</span>
  <span class="value">(206) 555-1234</span>
</div>
<div class="tel" id="fax">
  <span class="type">Fax</span>
  <span class="value">(206) 555-5678</span>
</div>
flag

2 Answers

vote up 2 vote down check

It is allowed but ignored by the standard. All properties have to be declared by classes:

Elements with class names of the listed properties represent the values of those properties.

link|flag
But it's ok to use the id attribute for purposes of CSS styling? – phenry Jul 18 at 19:46
1  
Yes, of course. They don’t conflict with your hcard declarations. – Gumbo Jul 18 at 19:47
1  
Just wanted to confirm Gumbo's answer. The id attribute won't affect microformat parsing. It's perfectly acceptable for formatting use, anchoring, etc. – Gabriel Hurley Jul 18 at 20:07
vote up 0 vote down

Don't also hesitate to validate your markup: http://hcard.geekhood.net/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.