You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hanxing Yang edited this page Jul 10, 2016
·
1 revision
name
style-disabled
description
<style> should not be used, while using individual CSS file (<link rel="stylesheet">) instead will improve maintainability. If <style> found, it reports.
sample
<!-- Bad --><style>body {
color:#333;
}
</style><!-- Good --><linkrel="stylesheet" src="./main.css">