🌈
NextGenCSS
  • 🔥NextGenCSS🔥
    • How to Contribute ?
  • Installation
    • Install and Use
    • Set Up
    • React
  • 🌟Quick Start
    • Get Started
    • Optimizations
    • Breakpoints
    • Colors
    • Buttons
    • BackGround Color
    • Border
    • Font
    • Icons
  • 🧩Components
    • Box
    • Card
    • Footer
    • NavBar
    • Switch
  • ⚒️Utilities
    • Display
    • Align
    • Center
    • Flex
    • Left
    • Right
    • Padding
    • Margin
    • Grid
    • Scale
  • forms
    • Input Box
  • ☺️Releases and Changelog
    • 0.0 🔥🔥 1st Release
Powered by GitBook
On this page
  • Syntax (custom)
  • Syntax

Was this helpful?

Edit on GitHub
  1. Utilities

Align

Align Utility

Syntax (custom)

```other code
    align : "align",
```

Syntax

.align-start , .align-end ,.align-center, .align-stretch , .align-space

These classes are used to set align-content property .

// align

.align-start{
    align-content: flex-start;
}
.align-end{
    align-content: flex-end;
}
.align-center{
    align-content: center;
}
.align-stretch{
    align-content: stretch;
}
.align-space{
    align-content: space-around;
}

Last updated 1 year ago

Was this helpful?

⚒️