vocab.design

component

Resize handle

also called size grip (community), grow box (community), resizer (community), corner grip (community), handlebar (community)

The small corner grip that lets you drag an element or window bigger and smaller, drawn as diagonal ridges on a textarea or window corner.

A resize handle is a few square pixels of ridges that make an edge draggable. It is a promise more than a mechanism: nothing about a corner says it can be pulled, so the grip is drawn to say it, which is why the diagonal ribs have survived from window corners and scrollbar gutters into the bottom right of every textarea on the web. Two neighbours are often confused with it, and the difference is what the drag does. A drag handle moves the thing it is attached to, changing its position or its place in an order. A splitter sits between two panes and divides them, so dragging it takes room from one and gives it to the other. A resize handle changes one box’s own size and nothing else’s.

The cursor carries most of the meaning, and it is worth getting exactly right, because it is the only feedback before the drag starts. A corner grip takes nwse-resize or nesw-resize depending on which diagonal it sits on, an edge takes ew-resize or ns-resize, and a handle that shows the plain arrow reads as decoration. On touch there is no cursor at all, which is why the grip needs a hit area far bigger than its artwork and why an edge handle only a few pixels wide has to be padded out to a thumb.

Every resize needs stops. A minimum keeps content from collapsing into an unreadable sliver, a maximum keeps a panel inside the space it lives in, and both should hold the drag at the limit rather than letting the box keep shrinking invisibly. Constrain what does not make sense to change: a code editor pane resizes horizontally only, a textarea usually should too, since resize: vertical prevents a reader from dragging a field wider than the column it sits in and breaking the layout around it. Keyboard access is the piece most often missing. Give the handle a role of separator or a slider’s arrow keys, report the size with aria-valuenow, and remember the last size, because a panel that resets on every visit teaches people not to bother.

Which word?

If you wantsay
the corner grip that resizes a boxresize handle
the draggable bar between two resizable panessplitter
dragging a column border to change its widthcolumn resizer
the part of an item that says grab me heredrag handle

Sources