- Avoid unnecessary quotes, use single quotes when quotes are necessary
- Class names should be lowercase dasherized
- One selector per line
- Use
hsl()/hsla()
for colors - Use
normal/bold
(instead of 100, 400, 700, etc) forfont-weight
- Exception: if you are using a specific font that supports more weights and you need to use one of them
For CSS classes and custom properties (variables), follow these naming conventions.
- Dasherize:
main-box
(notmainBox
) - Use a descriptive noun as the name:
main-box
,dialog
,user-info
- Adding extra information and qualifiers:
- Adjectives should come after the none:
main-box-small
(notsmall-main-box
) - Qualifying nouns should be added as a prefix:
customer-main-box
(notmain-box-customer
)
- Adjectives should come after the none:
:root {
--font-size: 16px; /* 'default' modifier not necessary, the name is generic and can be understood to be the default */
--font-size-small: 14px; /* 'small' is an adjective and goes after the noun it modifies */
--button-font-size: 20px; /* 'button' is a noun that qualifies this as a specific font size; use 'button' as prefix */
}