column-count
If you need an exact numbers of columns when designing a multi-column layout, use column-count
.
.lead {
column-count: 3;
}
Given the number of columns, the browser will evenly distribute the content in exactly that number of columns.
This …