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
Was this helpful?