Security News
The Risks of Misguided Research in Supply Chain Security
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
simple-css-columns
Advanced tools
A simple 12-column framework utilizing CSS grid, built with a focus on keeping the syntax simple and readable.
<link rel="stylesheet" type="text/css" href="css/simple.css" />
Container
Class | Usage | Accepts modifiers |
---|---|---|
.col-row | Container for your columns, handles the grid | No |
.col-fluid | Used in addition to .col-row , this tells the row not to break at breakpoints | No |
Columns
Class | Usage | Accepts modifiers |
---|---|---|
.col-{n} | Spans your column across n number of columns. Max of 12 | Yes |
.col-top | Aligns the column to the top of the row | Yes |
.col-center | Aligns the column to the center of the row | Yes |
.col-bottom | Aligns the column to the bottom of the row | Yes |
.col-stretch | Stretches a column vertically inside its row | Yes |
Elements can span multiple columns using the .col-{n}
class
<div class='col-row'>
<div class='col-9'>Nine columns</div>
<div class='col-3'>Three columns</div>
<div class='col-3'>Three columns</div>
</div>
Column sizes and placement can update based on viewport size using size modifiers. The following modifiers can be appended to any .col-
class to change based on browser size.
Mobile | Tablet | Desktop | Desktop HD |
---|---|---|---|
xs= | sm= | md= | lg= |
30em | 45em | 60em | 75em |
Examples
Adapt column span:
<div class='col-row'>
<div class='lg=col-6 md=col-4 sm=col-2'></div>
<div class='lg=col-6 md=col-8 sm=col-10'></div>
</div>
Adapt placement:
<div class='col-row'>
<div class='col-4 md=col-bottom sm=col-bottom'></div>
<div class='col-4 md=col-center sm=col-bottom'></div>
<div class='col-4 md=col-top sm=col-top'></div>
</div>
FAQs
A simple 12-column framework utalizing CSS grid.
We found that simple-css-columns 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
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.
Research
Security News
Socket researchers found several malicious npm packages typosquatting Chalk and Chokidar, targeting Node.js developers with kill switches and data theft.
Security News
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.