Currently, I am utilizing Bootstrap 4 and attempting to design a row of 12 icons that are responsive.
<div class="app-container">
<div class="row">
<div class="col-md-1">
<a class="" href="https://www.xxx.org.au">
<img class="" src="/images/web-1.png" alt="">
</a>
</div>
... x 12
</div>
</div>
The "app-container" class has one style property:
.app-container {
width:1050px;
}
When displayed on a wide screen, the icons remain in a single row.
However, as the window width decreases, I wish for the icons to gradually move into a second row, starting from the right end, one at a time.
Currently, they do not adjust responsively and appear to overflow outside of their container without adapting to the reduced width of the display.
Refer to the image below: