Require attributes to be separated by whitespace (attr-spacing
)
In HTML attributes must be separated by whitespace (commonly a regular space).
Rule details
Examples of incorrect code for this rule:
<input type="submit"class="foo">
Examples of correct code for this rule:
<input type="submit" class="foo">