
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
flexgrid.less
Advanced tools
flexbox-based grid system for older browsers.

I don't think that it's production ready software yet. But feel free to test it and improve it! :)
Use Issues tab to share your ideas etc!
npm install flexgrid.less
Import in project and use classes.
| Name | Example | Description |
|---|---|---|
fg | fg | Container |
fg-w-X | fg-w-1 | Set width of child. Replace X with number. |
fg-h-X | fg-h-2 | Set height of child. Replace X with number. |
<div class="fg">
<div class="fg-w-5 fg-h-4"></div>
</div>
<div class="fg">
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
<div class="fg-w-4 fg-h-3"></div>
</div>
demo/index.htmlMain build is 16x9 grid. But you can create own grid!
npm install)npx lessc --modify-var='c=NUMBER OF COLUMNS' \
--modify-var='r=NUMBER OF ROWS' \
--modify-var='g=GAP SIZE' \
src/fg.less dist/fg.css
E.g. Grid 4x3 with gap size 2px:
npx lessc --modify-var='c=4' \
--modify-var='r=3' \
--modify-var='g=2px' \
src/fg.less dist/fg.css
npm install flexgrid)@import 'flexgrid/flexgrid.less';
.flexgrid(@numberOfColumns, @numberOfRows, @gapSize);
E.g. Grid 4x3 with gap size 2px:
.flexgrid(4, 3, 2px);
FAQs
flexbox-based grid system for older browsers
The npm package flexgrid.less receives a total of 0 weekly downloads. As such, flexgrid.less popularity was classified as not popular.
We found that flexgrid.less demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.