--- extends: _layouts.markdown title: "Display" --- # Display > If you're looking for flexbox utilities, see the [flexbox](/flexbox) page. The display utilities simply `display` property helpers. ```html
``` ```less // Using the utilities in Less: div { .block; .inline-block; .table; .table-row; .table-cell; .hidden; } ``` ## Responsive The display utitlies can also be used with responsive prefixes: ```html
``` ```less // Using the utilities in Less: div { .screen(lg, { .inline-block; }); } ```