tailwind-clamp
v4.1.2
Published
Plugin to leverage the the CSS clamp function in your Tailwind CSS project.
Downloads
13,613
Readme
Tailwind clamp 🗜️
Leverage the the CSS clamp function in your Tailwind CSS project.
Features
- Clamp values between a min and max viewport width, making it grow / shrink with the viewport.
- Possibility to use small to large, large to small, negative to positive, positive to negative and negative to negative values. (Negative values only work on properties that allow them, e.g.
margin) - Supports
px,remandemunits. - Supports
textvalues with multiple properties (fontSize,lineHeight,letterSpacing). IflineHeightis definded as a unitless number or acalc()function, the resulting value is calculated and converted to thefontSizeunit. - Supports using Tailwind CSS theme values, arbitrary values or a combination.
- Supports container queries.
Requirements
The current version of the plugin is designed to be used with Tailwind version 4. To use it with version 3 use version 3.x.
Installation
Install the plugin from npm:
npm i tailwind-clampAdd the plugin in your main CSS file:
@import "tailwindcss";
@plugin "tailwind-clamp";Configuration
The plugin allows two configuration options:
| Name | Type | Description | Default value |
| ------------- | ---------- | ------------------------------------- | ------------- |
| minSize | {string} | Viewport size where the clamp starts. | 23.4375rem |
| maxSize | {string} | Viewport size where the clamp end. | 90rem |
Value should be a css length (px, rem, em). The unit for both options need to match.
@import "tailwindcss";
@plugin "tailwind-clamp" {
minSize: 25rem;
maxSize: 80rem;
}Usage
The plugin relies on the arbitrary values syntax clamp-[...]. You need to pass at least three arguments separated by commas without whitespace, optionally you can also pass the minSize and the maxSize:
clamp-[<property>,<start>,<end>,[minSize,maxSize]]Arguments
propertyProperty that the value should be applied to. See a list of all supported properties below.startValue atminSizeviewport size. It can be a key from your Tailwind CSS config file or a a css length (px,rem,em), the unit will need to matchend.endValue atmaxSizeviewport size. It can be a key from your Tailwind CSS config file or a css length (px,rem,em), the unit will need to matchstart.[minSize=23.4375rem]Viewport or container size, where the clamp starts, defaults to23.4375rem(375px). It can be a breakpoint or container size name from your theme or a css length (px,rem,em). Container size names and values are prefixed with@. The unit will need to matchmaxSizeand be smaller thanmaxSize.[maxSize=90rem]Viewport or container size, where the clamp stops, defaults to90rem(1440px). It can be a breakpoint or container size name from your theme or a css length (px,rem,em). Container size names and values are prefixed with@. The unit will need to matchminSizeand be be larger thanminSize.
Examples
<div class="clamp-[px,20,40] clamp-[py,10,18]">
Add some fluid padding here.
</div>
<div class="@container">
<div class="clamp-[text,lg,3xl,@sm,@5xl] clamp-[py,2,4,@29.5rem,@82rem]">
Add some fluid typography and padding to the content of the container.
</div>
</div>Note on spacing and sizing properties
All spacing and sizing properties (p, m, w, etc.) accept unitless numbers and .5 floating numbers that will get multiplied by the --spacing variable, analog to how Tailwind CSS handles spacing values.
<div class="clamp-[p,1,2]">
This will generate a `padding` value of `1rem` at `minSize` and `2rem` at `maxSize`.
</div>Supported properties
pincludingpt,pb,pl,pr,px,py,ps,pe.mincludingmt,mb,ml,mr,mx,my,ms,me.insetincludinginset-x,inset-y.topleftandstart.rightandend.bottomtextincludingfont-size,line-heightandletter-spacingif defined.gapincludinggap-x,gap-y.whsizemin-wandmin-hmax-wandmax-hroundedincludingrounded-s,rounded-ss,rounded-se,rounded-e,rounded-ee,rounded-es,rounded-t,rounded-r,rounded-b,rounded-l,rounded-tl,rounded-tr,rounded-bl,rounded-br.translate-xandtranslate-ytext-strokestrokeleadingtrackingborderincludingborder-t,border-b,border-l,border-r,border-x,border-y.scroll-mincludingscroll-mx,scroll-my,scroll-ms,scroll-me,scroll-mt,scroll-mb,scroll-ml,scroll-mrscroll-pincludingscroll-px,scroll-py,scroll-ps,scroll-pe,scroll-pt,scroll-pb,scroll-pl,scroll-prdecorationunderline-offset
Credits & mentions
The plugin is based on the formula presented in this article.
See also fluid.tw by Max Barvian.
License
MIT
