> For the complete documentation index, see [llms.txt](https://nextgencss.gitbook.io/untitled/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nextgencss.gitbook.io/untitled/utilities/display.md).

# Display

To change display property add these classes to the element

`.inline-flex` , `.block` , `.inline` , `.inline-block` ,[ `.flex`](/untitled/utilities/flex.md)

## Compiled As

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

It will add CSS to the element as

```css
.div{
    display : {some property};
}
```
