🌈
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

Was this helpful?

Edit on GitHub
  1. Utilities

Display

Change display property in NextGenCSS

To change display property add these classes to the element

.inline-flex , .block , .inline , .inline-block , .flex

Compiled As

<div class="{some property}"></div>

It will add CSS to the element as

.div{
    display : {some property};
}

Last updated 1 year ago

Was this helpful?

⚒️