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
Try to use IDs when the element is used in JS. If you must use a class, avoid binding to the same class in both your CSS and JS. You should use JS-specific classes to bind to, prefixed with .js-:
<button class="btn js-request">Request</button>
Comments
Prefer line comments (// in Sass-land) to block comments
Prefer comments on their own line. Avoid end-of-line comments
Write detailed comments for code that isn't self-documenting (z-index, compatibility or browser-specific hacks...)
Border
Use 0 instead of none to specify that a style has no border.