For the complete documentation index, see llms.txt. This page is also available as Markdown.

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