display

CSS Display

CSS Display

Introduction to CSS Display

The `display` property specifies the display behavior of an element, such as block, inline, or flex.

Common Display Values

Example


div {
    display: flex;
    justify-content: center;
}
        

Browser Support

Supported by all modern browsers.