This content originally appeared on DEV Community and was authored by Pritam Patil
When grouping selectors, keep individual selectors to a single line.

Lowercase all hex values and use shorthand hex values whenever possible.

Related property declarations should be grouped together following the order: position, box-model, typography, visual. misc.

Don't use
!important- It is a last resort generally and only use when you need to override something and there is no other way. Instead increase the specificity of the selector.
When a rule set includes only one declaration, consider removing line breaks for readability and faster editing.

Limit shorthand declaration usage to instances where you must explicitly set all available values.

Ensure your code is descriptive, well commented and approachable by others. Great code comments convey context and/or purpose.

Class names:
a. Keep them lowercase and use dashes to separate words
b. Avoid excessive shorthand notation. (.btnis fine,.sis not)
c. Use meaningful names: use structural or purposeful names over presentation.
d. Prefix classes based on the closest parent or base class.
Selectors:
a. Use classes over generic element tag for optimum rendering performance.
b. Avoid using several attribute selectors (e.g.[class^="..."]) on commonly occurring components. Browser performance is known to be impacted by these.
c. Keep selectors short and strive to limit the number of elements in each selector to three names over presentational.
Place media queries as close to their relevant rule sets whenever possible.

...
Follow me on twitter or Github.
This content originally appeared on DEV Community and was authored by Pritam Patil
Pritam Patil | Sciencx (2021-06-20T18:31:15+00:00) 12 CSS Best Practices by Twitter. Retrieved from https://www.scien.cx/2021/06/20/12-css-best-practices-by-twitter/
Please log in to upload a file.
There are no updates yet.
Click the Upload button above to add an update.

