display

Since UXP v3.0

Determines the layout semantics for the element. Supports none, inline, block, inline-block, flex, and inline-flex.

See: https://developer.mozilla.org/en-US/docs/Web/CSS/Reference/Properties/display

Example:

.someElement {
    display: flex;
}