Skip to content

Files

Latest commit

 

History

History

html

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 

HTML

  • Always use quotes when specifying attribute values.

    <!-- Good -->
      <td class="foo"></td>
      <td class="foo bar"></td>
    
    <!-- Bad -->
      <td class=foo></td>

    Reasoning: since quotes are required in some situations, quote consistently to minimize thought points + diffs.