Ordering fluid and fixed containers

Probably an odd question but does anyone know of a way in Bootstrap 4 to re-order containers and not just columns.

I can reorder like this

<div class="container">
  <div class="row">
    <div class="col order-2">Place first show second</div>
    <div class="col order-1">Place second show first</div>
  </div>
</div>

But what if I want a combo of fixed and fluid on the same layout like this, and it does not work :frowning:

<div class="container order-2">
  <div class="row">
    <div class="col">Placed first show second</div>
  </div>
</div>
<div class="container-fluid order-1">
  <div class="row">
    <div class="col">Place second show first</div>
  </div>
</div>
Community Page
Last updated: