visibility

Since UXP v3.0

Determines if an element is visible. Supports visible and hidden. Unlike display: none, a hidden element still takes up the same space in the surrounding layout.

See: https://developer.mozilla.org/en/docs/Web/CSS/visibility

Example:

.someElement {
    visibility: hidden;
}