This is our methodology how to write efficient and scalable (S)CSS for big websites.
If you want to start a new project from scratch, try nikita.generator.
If you're interested in HTML patterns, code snippets and best practices, try nikita.html.
If you're interested in our Javascript conding style guide, try nikita.js.
We're using some variation of BEM+SMACSS+opinionatedexperienceofcssdevelopmentyears:
Our site exists of basic blocks. Blocks are independent parts of the site (e.g. menu, metanav, login form, sidebar, user detail page). Like explained at yandex's BEM. The blocks may contain other blocks.
The smallest entities of a block are called elements. For instance the block 'menu' contains multiple items, a login block may contain a username element, password element and a submit button element. Like explained at yandex's BEM.
Blocks and elements may be modified with modifiers. For instance the selected menu item is a modified version of the menu item.
- Blocks
- are prefixed with
b-
- good: b-menu, b-sidebar, b-sitemap, b-user
- bad: menu, sidebar, sitemap, user
- are prefixed with
- Elements
- have no prefix and can only be defined in block scope
- to avoid conflicts with nested blocks elements should be named unique to their corresponding block.
- good: menu-item, sidebar-title, user-text
- bad: item, title, text (instead of user or avatar)
- Modifier
- are prefixed with
is-
orhas-
, and have to be defined in block or element scope - good: is-selected, is-active, has-items
- bad: x-selected, active, m-items
- are prefixed with
File _menu.scss
in src/scss/blocks
directory.
.b-menu { /* block: 'b-menu' */
&.is-static { /* modifier: 'is-static' for b-menu */
…
}
.menu-item { /* element: 'item' in b-menu */
…
}
}
Additionally you can make use of utility classes for recurring style adjustments that are to small for being a block. These classes need to be prefixed with u-
and should reside in src/scss/utilities.scss
.
Please use these classes sparingly. Its not intended to build everything with these utility classes and create your own framework with it. Our main approach is still to use block, elements and modifiers but there are situations where you only need to make some small adjustment with just a few lines that doesn't require the whole BEM structure to be used. That's a good point to use utility classes. To make this more clear the following examples may help you get the idea.
.u-reset-list {
margin: 0;
padding: 0;
list-style: none;
}
.u-visuallyhidden {
@include a11y-hide;
}
.u-hide-text {
@include hide-text;
}
Component Blocks:
- b-eventlist
- b-linklist
- b-sitemap
- b-teaser-text
- b-teaser-video
- …
Add comments at the line where they belong to or above the ruleset that you want to comment.
/* Rule specific comment */
.box {
position: fixed;
transform: translate3d(0, 0, 0); /* Enable hardware acceleration */
/* Rule specific comment */
.csspositionsticky & {
position: sticky; /* On anything except top aligned elements this is buggy in Chrome <37 and iOS 7+ */
}
}
We use Foundation as (S)CSS framework.
In our default setup only the settings and mixins are loaded.
Feel free to activate more Foundation features by changing src/scss/foundation.scss
and modify settings at src/scss/variables/_foundation-settings.scss
.
We strongly recommend to use Foundation Grid and Foundation Breakpoints mixins if needed.
Please take a look at Foundation Docs for more information.
(This list is not intended to be exhaustive.)
- Use lowercase for class names.
- Be consistant with indentation – we use spaces instead of tabs.
- Be consistent in declaration order, cluster related properties (Positioning, Box-Model, Text & Color). I'm no fan of an alphabetical order.
- Be consistant with quotes – I'm using double quotes
""
. - Quote attribute values in selectors, e.g.
input[type="checkbox"]
. - One selector per line, one rule per line.
- Put spaces after
:
in property declarations. - Put spaces before
{
in rule declarations. - Put a
;
at the end of the last declaration in a declaration block. - Include a space after each comma in comma-separated property or function values, e.g.
rgba(0, 0, 0, 0)
. - Separate each ruleset by a blank line.
(This list is not intended to be exhaustive.)
If a selector is too generic, it's dangerous. In 99% of cases you have to overwrite this rule somewhere. Be more specific. Try using a class instead. (Exception: CSS-Resetstyles)
bad
header { … }
h2 { … }
ul { … }
good
.header { … }
.subtitle { … }
.linklist { … }
Element selectors are expensive. Like the rule above, be more specific. Try using a class instead. Furthermore elements like <div />
and <span />
should always have a class-attribute in your markup.
bad
.foo div { … }
.foo span { … }
.foo ul { … }
good
.foo .section { … }
.foo .title { … }
.foo .linklist { … }
IDs should never be used in CSS. Use IDs in HTML for fragment identifiers and maybee JS hooks but never in CSS because of their heightened specificity and because they can never be used more than once in a page.
Though you should use IDs in forms to connect <input />
and <label />
with the for
-attribute.
bad
#sidebar
good
.sidebar
It's counterproductive because you unnecessary heighten the specifity.
bad
ul.linklist { … }
div.example { … }
a.back { … }
good
.linklist { … }
.example { … }
.back { … }
The descendant selector is the most expensive selector in CSS. You should target directly if possible.
bad
html body .linklist li a { … }
good
.linklist-link { … }
Following to the rule above you should also try to nest your selectors maximum 3 levels deep.
bad
.navlist li a span:before { … }
good
.navlist .info:before { … }
Separation of concerns
bad
.dialog-opener { … }
$('.dialog-opener')…
good
.dialog-opener { … }
prefixed with js-
$('.js-dialog-opener')…
or use data-attributes:
$('[data-dialog-opener]')…
The English language has proven itself among coders as the standard.
bad
.share-buttons .teilen a {
background: url("../img/icons/facebook-teilen.png") no-repeat 0 0;
}
good
.share-buttons .facebook-share a {
background: url("../img/icons/facebook-share.png") no-repeat 0 0;
}
It's shorter and easier to read.
bad
.box {
padding-top: 0;
padding-right: 10px;
padding-bottom: 20px;
padding-left: 10px;
}
good
.box {
padding: 0 10px 20px;
}
Then it's very easy to modify the font-size of the hole page by just editing the font-size of the html
element.
It's also recommended to set the default font-size
of the html
element to 62.5%
.
This ensures that 1rem = 10px and that the accessibility feature of browsers to enlarge text is still working.
bad
.box {
font-size: 12px;
line-height: 16px;
}
good
.box {
font-size: 1.2rem;
line-height: 1.6rem;
}
Zero is zero. :)
bad
.box {
margin: 0px;
}
good
.box {
margin: 0;
}
exception, where you don't omit
.box {
transform: rotate(0deg);
}
In most cases the hex code is shorter than the color names, so you could save some bits.
bad
.box {
color: orange;
}
good
.box {
color: #ffa500;
}
Like above, it's shorter and saves some bits.
bad
.box {
color: #ff0099;
}
good
.box {
color: #f09;
}
It's the typographic standard to use number keywords. Like above it's also shorter and saves some bits.
bad
.box {
font-weight: normal;
}
good
.box {
font-weight: 400;
}
It's easier to read and to select the fragments by using shift + alt + left/right-arrow
.
bad
.user_avatar { … }
.userAvatar { … }
.useravatar { … }
good
.user-avatar { … }
Self-explanatory I hope. :) It may be ok to use it on utility classes though.
The main SCSS-file is styles.scss
. It imports all partials. variables
, mixins
, extends
, icons
and blocks
will be imported with a globbing-pattern.
It's important that every block-component gets its own partial and is put into the blocks
-folder! Use subfolders if your site uses lots of partials.
This is how the sass
-folder looks like:
$ tree
.
├── _basics.scss
├── _reset.scss
├── _utilities.scss
├── _webfonts.scss
├── blocks
│ ├── _aside.scss
│ ├── _footer.scss
│ ├── _header.scss
│ ├── _nav.scss
│ └── …
├── extends
│ ├── _buttons.scss
│ ├── …
├── mixins
│ ├── _triangle.scss
│ └── …
├── styles.scss
└── variables
├── _color.scss
├── _timing.scss
├── _typography.scss
└── …
Some explanation:
- basics.scss – basic styles, some normalizing
- reset.scss – global browser reset by Eric Meyer
- webfonts.scss – use it for
@font-face
-declarations - utilites.scss – utility classes for tiny recurring style declarations that are needed in several places
- blocks/ – all block-component-partials go in here
- extends/ – put your placeholder-extends in here
- mixins/ – put your mixins in here
- styles.scss – main stylesheet, imports all partials
- variables/ – put your variables in here, e.g.
color
,typography
etc.
Someone said: »Preprocessors do not output bad code. Bad developers do.« That's why it's important to have a common ruleset. If you work in a team with other frontend developers you get the following benefits: maintainability, scalability, efficiency, you avoid conflicts from the beginning and last but not least you save time for the finer things. :)
We're using SCSS-syntax because it's valid CSS and more expressive in our eyes.
If you have a consistent order of definition, everybody can scan the code on first sight.
List media queries first
.b-foo {
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
}
List global styles beginning with @extend second (separated by a blank line)
.b-foo {
// Global Styles
@extend %module;
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
}
List @include third
.b-foo {
// Global Styles
@extend %module;
@include centering(horiz);
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
}
List regular styles next
.b-foo {
// Global Styles
@extend %module;
@include centering(horiz);
color: #000;
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
}
List pseudo-class/elements nesting with & (separated by a blank line)
.b-foo {
// Global Styles
@extend %module;
@include centering(horiz);
color: #000;
&:hover {
color: #fff;
}
&::after {
content: "";
}
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
}
List nested selectors last (separated by a blank line)
.b-foo {
// Media Queries
@include breakpoint(large) {
padding: 10px;
}
// Global Styles
@extend %module;
@include centering(horiz);
color: #000;
&:hover {
color: #fff;
}
&::after {
content: "";
}
> .bar {
background-color: #f90;
}
}
Maximum Nesting: three levels deep!
.b-foo {
.bar {
.baz {
// no more!
}
}
}
Where to define the styles for blocks in blocks? Answer: always in your block which gets the styling. Otherwise you have to maintain more than one file which is error-prone.
Example: Assumed that you have a different styling for the user-avatar-block, based on whether it's in your header-block or in your footer-block.
<div class="b-header">
<div class="b-user-avatar">
…
</div>
</div>
<div class="b-footer">
<div class="b-user-avatar">
…
</div>
</div>
bad
// _header.scss
.b-header {
.b-user-avatar {
float: right;
width: 100px;
height: 100px;
}
}
// _footer.scss
.b-footer {
.b-user-avatar {
float: left;
width: 50px;
height: 50px;
}
}
// _user-avatar.scss
.b-user-avatar {
border-radius: 50%;
}
good
// _user-avatar.scss
.b-user-avatar {
border-radius: 50%;
.b-header & {
float: right;
width: 100px;
height: 100px;
}
.b-footer & {
float: left;
width: 50px;
height: 50px;
}
}
Selectors mirror the order of the markup.
<div class="b-foo">
<ul class="bar">
<li class="baz">
<a class="qux" href="#">Link</a>
</li>
</ul>
</div>
bad
.b-foo {
.qux {
…
}
.bar {
…
}
}
good
.b-foo {
.bar {
…
}
.qux {
…
}
}
All child selectors are bundled below the parent selector.
<div class="b-foo">
<ul class="bar">
<li class="baz">
<a class="qux" href="#">Link</a>
</li>
</ul>
</div>
bad
.b-foo {
.bar {
…
}
}
.b-foo {
.qux {
…
}
}
good
.b-foo {
.bar {
…
}
.qux {
…
}
}
Each child selector will be indented and set on a new line. Important: you don't have to mirror the complete DOM!
Rule of thumb: The selector is as short as possible. Indention only if the selector is needed.
<div class="b-foo">
<ul class="bar">
<li class="baz">
<a class="qux" href="#">Link</a>
</li>
</ul>
</div>
bad
.b-foo {
.baz .qux {
…
}
}
bad too
.b-foo {
.baz {
.qux {
…
}
}
}
good
.b-foo {
.qux {
…
}
}
Sass/SCSS provide two practical ways to reuse code snippets in your CSS: Mixins and Extends. Both have their pros and cons and it needs careful consideration what to choose for each use case. The biggest caveat is that extends can't be used inside media queries but mixins can. Therefore extends should be used only for self contained rulesets and not snippets.
You have two options to extend code blocks that are reused several times: standard classes and placeholders. The advantage of placeholder extends over classes: they won't be added to the CSS output and remain silent.
Class extend
// Usage
.foo {
padding: 10px;
}
.bar {
@extend .foo;
color: #fff;
}
// Output
.foo,
.bar {
padding: 10px;
}
.bar {
color: #fff;
}
Placeholder extend
// Usage
%foo {
padding: 10px;
}
.bar {
@extend %foo;
color: #fff;
}
// Output
.bar {
padding: 10px;
color: #fff;
}
Just because you can solve problems with functions, mixins etc. in SASS, you must not necessarily do it. :)
Always remember that others should easily read and understand your code too.
elaborate
// Mixin
@mixin context($old-context, $new-context) {
@at-root #{selector-replace(&, $old-context, $new-context)} {
@content;
}
}
// Usage
li {
float: left;
ul {
display: none;
@include context('li', 'li:hover') {
display: block;
}
}
}
simple
li {
float: left;
ul {
display: none;
}
&:hover ul {
display: block;
}
}
For better readability, you should write the properties as in CSS.
elaborate
.foo {
font: {
family: arial, sans-serif;
size: 5em;
weight: 700;
}
}
simple
.box {
font-family: arial, sans-serif;
font-size: 5em;
font-weight: 700;
}
If you're asking yourself »Why not …?« have a look at my WHY-NOT.md file. There I might answer some common questions. :)
nikita.css is licensed under CC0: Public Domain Dedication.