(Choose 1 answer)
What happens if your grid columns use just the .col class?
<div class="container">
<div class="row">
<div class="col">Column
</div>
<div class="col">
Column
</div>
</div>
</div>
A. Each column will be full width and expand 100% horizontally
B. Each column will wrap the content but be auto width
C. Grid columns without a set breakpoint width will automatically layout with equal widths. So in this example,50%/50%
D. Since the Bootstrap 4 grid uses floats, each column will float left
E22