Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 448 Bytes

no-inline-styles.md

File metadata and controls

26 lines (17 loc) · 448 Bytes
id title
no-inline-styles
@html-eslint/no-inline-styles

Disallow inline styles.

Rule Details

This rule disallow the use of inline styles.

Examples of incorrect code for this rule:

<div style="color:#ff0a00"></div>

Examples of correct code for this rule:

<div class="some-color"></div>

Further reading

MDN - id