Change display property in NextGenCSS
Last updated 1 year ago
Was this helpful?
To change display property add these classes to the element
.inline-flex , .block , .inline , .inline-block ,
.inline-flex
.block
.inline
.inline-block
<div class="{some property}"></div>
It will add CSS to the element as
.div{ display : {some property}; }
.flex