--- extends: _layouts.markdown title: "Overflow" --- # Overflow The overflow utilities are simply `overflow` property helpers. ```html
``` ```less div { .overflow-auto; .overflow-hidden; .overflow-visible; .overflow-scroll; .overflow-scroll-x; .overflow-scroll-y; .mask; } ``` Note that `.overflow-hidden` is available in a shorthand called `.mask`. ## Responsive The display utitlies can also be used with responsive prefixes: ```html
``` ```less div { .screen(lg, { .overflow-scroll; }); } ```