Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"id" attribute in microformats

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>
like image 736
phenry Avatar asked Apr 27 '26 05:04

phenry


1 Answers

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.

like image 165
Gumbo Avatar answered Apr 29 '26 17:04

Gumbo