Render Flow - Column sizing (col-1 through col-12)
Read HTML with .row and .col-* classes
Create DOM nodes for row and columns
Bootstrap CSS applies flexbox to .row
Calculate width % for each .col-* based on 12-grid
Set flex-basis and max-width for columns
Browser lays out columns side-by-side
Paint columns with content
Bootstrap reads the HTML with column classes, applies flexbox layout on the row, calculates each column's width as a fraction of 12, and then lays out columns side-by-side with those widths.