Functional Classes

Functional classes using pure CSS are marked with the is, no, has and fn prefix. JavaScript enhanced and therefore reusable classes on the other hand can be identified by the js prefix and should never have declarations.

Syntax

Pure CSS related syntax:

.is-{state}
.has-{context}
.no-{feature}
.fn-{action}

JavaScript related syntax:

.js-{action}
.js-{context}

Overview

PrefixTagExample

is-

*

.is-active

has-

*

.has-tooltip

no-

*

.no-webgl

fn-

*

.fn-clearfix

js-

*

.js-click

Last updated