File size: 9,897 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 |
---
title: Flex and Grid
description: JSX style props to control flex and grid layouts
---
## Flex Basis
Use the `flexBasis` prop to set the initial main size of a flex item.
```jsx
<Flex>
<Box flexBasis="25%" />
<Box flexBasis="25%" />
<Box flexBasis="50%" />
</Flex>
```
| Prop | CSS Property | Token Category |
| ----------- | ------------ | -------------- |
| `flexBasis` | `flex-basis` | - |
## Flex Direction
Use the `flexDir` or `flexDirection` prop to set the direction of the main axis
in a flex container.
```jsx
<Box display="flex" flexDirection="column">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
When using `Flex` component, the `direction` prop is aliased to `flexDirection`.
```jsx
<Flex direction="column">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| -------------------------- | ---------------- | -------------- |
| `flexDir`, `flexDirection` | `flex-direction` | - |
## Flex Wrap
Use the `flexWrap` prop to set whether flex items are forced onto one line or
can wrap onto multiple lines.
```jsx
<Box display="flex" flexWrap="wrap">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
When using `Flex` component, the `wrap` prop is aliased to `flexWrap`.
```jsx
<Flex wrap="wrap">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| ---------- | ------------ | -------------- |
| `flexWrap` | `flex-wrap` | - |
## Flex
Use the `flex` prop to define the flexibility of a flex container or item.
```jsx
<Flex>
<Box flex="1" />
<Box />
</Flex>
```
| Prop | CSS Property | Token Category |
| ------ | ------------ | -------------- |
| `flex` | `flex` | - |
## Flex Grow
Use the `flexGrow` prop to set the flex grow factor of a flex item.
```jsx
<Flex>
<Box flexGrow="0" />
<Box flexGrow="1" />
</Flex>
```
| Prop | CSS Property | Token Category |
| ---------- | ------------ | -------------- |
| `flexGrow` | `flex-grow` | - |
## Flex Shrink
Use the `flexShrink` prop to set the flex shrink factor of a flex item.
```jsx
<Flex>
<Box flexShrink="0" />
<Box flexShrink="1" />
</Flex>
```
| Prop | CSS Property | Token Category |
| ------------ | ------------- | -------------- |
| `flexShrink` | `flex-shrink` | - |
## Order
Use the `order` prop to set the order of a flex item.
```jsx
<Flex>
<Box order="0" />
<Box order="1" />
</Flex>
```
| Prop | CSS Property | Token Category |
| ------- | ------------ | -------------- |
| `order` | `order` | - |
## Gap
Use the `gap` prop to set the gap between items in a flex or grid container.
```jsx
<Flex gap="4">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| ----- | ------------ | -------------- |
| `gap` | `gap` | `spacing` |
## Grid Template Columns
Use the `gridTemplateColumns` prop to define the columns of a grid container.
```jsx
<Box display="grid" gridTemplateColumns="repeat(3, minmax(0, 1fr))">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
When using `Grid` component, the `templateColumns` prop is aliased to
`gridTemplateColumns`.
```jsx
<Grid templateColumns="repeat(3, minmax(0, 1fr))">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Grid>
```
## Grid Template Start/End
Use the `gridTemplateStart` and `gridTemplateEnd` props to define the start and
end of a grid container.
```jsx
<Box display="grid" gridTemplateColumns="repeat(3, minmax(0, 1fr))">
<Box>Item 1</Box>
<Box gridColumn="span 2 / span 2">Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ------------------- | --------------------- | -------------- |
| `gridTemplateStart` | `grid-template-start` | - |
| `gridTemplateEnd` | `grid-template-end` | - |
## Grid Template Rows
Use the `gridTemplateRows` prop to define the rows of a grid container.
```jsx
<Box display="grid" gap="4" gridTemplateRows="repeat(3, minmax(0, 1fr))">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ------------------ | -------------------- | -------------- |
| `gridTemplateRows` | `grid-template-rows` | - |
## Grid Row Start/End
Use the `gridRowStart` and `gridRowEnd` props to define the start and end of a
grid item.
```jsx
<Box display="grid" gap="4" gridTemplateRows="repeat(3, minmax(0, 1fr))">
<Box gridRowStart="1" gridRowEnd="3">
Item 1
</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| -------------- | ---------------- | -------------- |
| `gridRowStart` | `grid-row-start` | - |
| `gridRowEnd` | `grid-row-end` | - |
## Grid Autoflow
Use the `gridAutoFlow` prop to define how auto-placed items get flowed into the
grid.
```jsx
<Box display="grid" gridAutoFlow="row">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| -------------- | ---------------- | -------------- |
| `gridAutoFlow` | `grid-auto-flow` | - |
## Grid Auto Columns
Use the `gridAutoColumns` prop to specify the size of the grid columns that were
created without an explicit size.
```jsx
<Box display="grid" gridAutoColumns="120px">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ----------------- | ------------------- | -------------- |
| `gridAutoColumns` | `grid-auto-columns` | - |
## Grid Auto Rows
Use the `gridAutoRows` prop to specify the size of the grid rows that were
created without an explicit size.
```jsx
<Box display="grid" gridTemplateRows="200px" gridAutoRows="120px">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| -------------- | ---------------- | -------------- |
| `gridAutoRows` | `grid-auto-rows` | - |
## Justify Content
Use the `justifyContent` prop to align items along the main axis of a flex
container.
```jsx
<Box display="flex" justifyContent="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
When using the `Flex` component, the `justify` prop is aliased to
`justifyContent`.
```jsx
<Flex justify="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| ---------------- | ----------------- | -------------- |
| `justifyContent` | `justify-content` | - |
## Justify Items
Use the `justifyItems` prop to control the alignment of grid items within their
scope.
```jsx
<Box display="grid" justifyItems="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| -------------- | --------------- | -------------- |
| `justifyItems` | `justify-items` | - |
## Align Content
Use the `alignContent` prop to align rows of content along the cross axis of a
flex container when there's extra space.
```jsx
<Box display="flex" alignContent="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
When using the `Flex` component, the `align` prop is aliased to `alignContent`.
```jsx
<Flex align="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| -------------- | --------------- | -------------- |
| `alignContent` | `align-content` | - |
## Align Items
Use the `alignItems` prop to control the alignment of grid items within their
scope.
```jsx
<Box display="grid" alignItems="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
## Align Self
Use the `alignSelf` prop to control the alignment of a grid item within its
scope.
```jsx
<Box display="grid">
<Box alignSelf="center">Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ----------- | ------------ | -------------- |
| `alignSelf` | `align-self` | - |
## Place Content
Use the `placeContent` prop to align content along both the block and inline
directions at once. It works like `justifyContent` and `alignContent` combined,
and can be used in flex and grid containers.
```jsx
<Flex placeContent="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Flex>
```
| Prop | CSS Property | Token Category |
| -------------- | --------------- | -------------- |
| `placeContent` | `place-content` | - |
## Place Items
Use the `placeItems` prop to align items along both the block and inline
directions at once. It works like `justifyItems` and `alignItems` combined, and
can be used in flex and grid containers.
```jsx
<Box display="grid" placeItems="center">
<Box>Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ------------ | ------------- | -------------- |
| `placeItems` | `place-items` | - |
## Place Self
Use the `placeSelf` prop to align a grid item along both the block and inline
directions at once.
```jsx
<Box display="grid">
<Box placeSelf="center">Item 1</Box>
<Box>Item 2</Box>
<Box>Item 3</Box>
</Box>
```
| Prop | CSS Property | Token Category |
| ----------- | ------------ | -------------- |
| `placeSelf` | `place-self` | - |
|