Render Flow - Auto-sizing columns
Read <div class='container'>
→Create container node
Read <div class='row'>
→Create row node as child
Read <div class='col-auto'>
→Create col-auto node as flex item
Read <div class='col'>
→Create col node as flex item
Apply Bootstrap flex styles
Calculate col-auto width based on content
Calculate col width to fill remaining space
Layout flex items horizontally
Paint columns
Composite final layout
Bootstrap uses flexbox for its grid. The 'col-auto' column sizes itself to its content width, while the 'col' column fills the remaining horizontal space. The browser calculates widths and lays out columns side by side.