Flexbox & Grid
Utilities for controlling the initial size of flex items.
Class | Styles |
---|---|
basis-<number> | flex-basis: calc(var(--spacing) * <number>); |
basis-<fraction> | flex-basis: calc(<fraction> * 100%); |
basis-full | flex-basis: 100%; |
basis-auto | flex-basis: auto; |
basis-3xs | flex-basis: var(--container-3xs); /* 16rem (256px) */ |
basis-2xs | flex-basis: var(--container-2xs); /* 18rem (288px) */ |
basis-xs | flex-basis: var(--container-xs); /* 20rem (320px) */ |
basis-sm | flex-basis: var(--container-sm); /* 24rem (384px) */ |
basis-md | flex-basis: var(--container-md); /* 28rem (448px) */ |
basis-lg | flex-basis: var(--container-lg); /* 32rem (512px) */ |
basis-xl | flex-basis: var(--container-xl); /* 36rem (576px) */ |
basis-2xl | flex-basis: var(--container-2xl); /* 42rem (672px) */ |
basis-3xl | flex-basis: var(--container-3xl); /* 48rem (768px) */ |
basis-4xl | flex-basis: var(--container-4xl); /* 56rem (896px) */ |
basis-5xl | flex-basis: var(--container-5xl); /* 64rem (1024px) */ |
basis-6xl | flex-basis: var(--container-6xl); /* 72rem (1152px) */ |
basis-7xl | flex-basis: var(--container-7xl); /* 80rem (1280px) */ |
basis-(<custom-property>) | flex-basis: var(<custom-property>); |
basis-[<value>] | flex-basis: <value>; |
Use basis-<number>
utilities like basis-64
or basis-128
to set the initial size of flex items based on the spacing scale:
Use utilities like basis-xs
and basis-sm
to set the initial size of flex items based on the container scale:
Use basis-<fraction>
utilities like basis-1/2
and basis-2/3
to set the initial size of flex items:
Use the basis-(<custom-property>)
syntax to set the basis based on a custom property:
<div class="basis-(--my-basis) ..."> <!-- ... --></div>
Use the basis-[<value>]
syntax to set the basis based on a completely custom value:
<div class="basis-[30vw] ..."> <!-- ... --></div>
Prefix a basis
utility with a breakpoint variant like md:
to only apply the utility at medium screen sizes and above:
<div class="flex flex-row"> <div class="basis-1/4 md:basis-1/3">01</div> <div class="basis-1/4 md:basis-1/3">02</div> <div class="basis-1/2 md:basis-1/3">03</div></div>
Learn more about using variants in the variants documentation.
Use the --container-*
theme variables to customize the fixed-width basis utilities in your project:
@theme { --container-4xs: 14rem; }
Now the basis-4xs
utility can be used in your markup:
<div class="basis-4xs"> <!-- ... --></div>
Additionally, customizing your spacing scale will also update the basis-<number>
scale:
@theme { --spacing: 1px; }
Learn more about customizing your theme in the theme documentation.