Skip to Content
StylingAlign Items

Align Items

Use alignItems prop to control how flex items are aligned on the cross axis.

Name

Styles

center
end
normal
start
stretch

Documentation

Usage

01

02

03

"use client"; import type { ComponentPropsWithoutRef } from "react"; import { Canvas } from "@/demos/Canvas"; import { Box, Flex } from "@optiaxiom/react"; export function App({ alignItems = "center", }: Pick<ComponentPropsWithoutRef<typeof Flex>, "alignItems">) { return ( <Canvas asChild striped> <Flex alignItems={alignItems} flexDirection="row" h="224"> <Box flex="1" p="32"> 01 </Box> <Box flex="1" p="64"> 02 </Box> <Box flex="1" p="48"> 03 </Box> </Flex> </Canvas> ); }

Responsive

"use client"; import { Canvas } from "@/demos/Canvas"; import { Box, Flex } from "@optiaxiom/react"; export function App() { return ( <Canvas asChild striped> <Flex alignItems={["stretch", "center"]} flexDirection="row" h="224"> <Box flex="1" p="32"> 01 </Box> <Box flex="1" p="64"> 02 </Box> <Box flex="1" p="48"> 03 </Box> </Flex> </Canvas> ); }
Last updated on