Starting to learn Bootstrap 4 and its responsive grid system, the code below shows my basic container class.
<div class="container">
<div class="row">
<div class="col-12 col-sm-8 col-md-12 col-lg-4 box1">1</div>
<div class="col-12 col-sm-2 col-md-6 col-lg-4 box2">2</div>
<div class="col-12 col-sm-2 col-md-6 col-lg-4 box3">3</div>
</div>
<div class="row">
<div class="hidden-sm-up col-12 box4">4</div>
</div>
</div>
The first row is working perfectly fine, however my second row I am trying to make just visible on xs screensizes. Tried looking on Bootstrap's webpage and can't see where my error is.