New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@curiousmedia/grid-calc

Package Overview
Dependencies
Maintainers
5
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@curiousmedia/grid-calc

CSS rows and columns using calc and Flexbox or display-inline.

latest
npmnpm
Version
1.1.3
Version published
Maintainers
5
Created
Source

Grid-calc

CSS rows and columns using calc and Flexbox or display-inline. This library does not use CSS Grid layout. Columns use calc instead of padding for column gutters.

Example

4 columns

ul {
    @include grid-calc(4);
}

3 columns with 10px gutters

ul {
    @include grid-calc(3, 10px);
}

Centered columns

ul {
    @include grid-calc(3, 0, true);
}

Display-inline fallback

For browsers that do not support flexbox.

ul {
    @include grid-calc(3, 0, false, true);
}

FAQs

Package last updated on 26 Mar 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts