# Vertically center any content

Add the class "ds-vertical-align" to the columns of the row.

```
.ds-vertical-align { 
    display: flex; 
    flex-direction: column; 
    justify-content: center;
} 
``` 

