When utilizing Bootstrap 3, we are able to write
<div class="row">
<div class="col-lg-6 col-md-6 col-xs-12">
</div>
<div>
However, how can we achieve the same result in Bootstrap 4? I attempted using <div class="col-6 col-12">
, but it only functions the same as col-lg-12 (full width). I require the ability to use the same div with different classes as in BS3, in BS4. What is the best approach to accomplish this?