supple-css

Supple CSS | utilities.columns

Utility which provides a columns custom property for use in objects or components which can handle those columns eg. object.mesh and object.layout.

Read more about Supple CSS.

Table of contents

Features

Use

<div class="o-mesh  u-columns-10">
  <div class="u-colspan-3">spans 3 of 10 columns</div>
  <div class="u-colspan-7">spans 7 of 10 columns</div>
</div>

Available classes

By default we generate classes for 12 columns but it can be configured with the $columns setting.

Configurable variables

SCSS variables

You can overwrite the SCSS variables the following ways:

// in your manifest file, eg. `styles.scss`
@use 'node_modules/@supple-kit/supple-css/utilities/columns' with (
  $columns: 10,
  $in-query: (
    lap,
    desk,
  )
);

or

// in your own variable file, eg. `_vars.scss`
@use 'node_modules/@supple-kit/supple-css/utilities/columns/variables' with (
  $in-query: (
    lap,
    desk,
  )
);

// in your manifest file, eg. `styles.scss`
@use 'node_modules/@supple-kit/supple-css/utilities/columns';

Installation

Make sure you’ve installed/downloaded the Supple CSS library: Supple CSS installation

Browser support