Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 308 Bytes

README.md

File metadata and controls

15 lines (11 loc) · 308 Bytes

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.