Is there a way to create a line break in a specific place within a button group on a certain screen size? I have a button group with 4 buttons in a row, and I would like to split it into two lines after the first button if there isn't enough space.
<div class="input-group" role="group">
<div class="input-group-text" id="btnGroupAddon">
<a class="btn btn-secondary" role="button">Add</a>
</div>
<!-- Line break when screen width<=600 -->
<input type="text" class="form-control">
<div class="input-group-text" id="btnGroupClear">
<a href="#"><img src="backspace.svg" height="16px;" onclick="clearSearch()"></a>
</div>
<div class="input-group-text" id="btnGroupSearch">
<a href="#"><img src="search.svg" height="16px;" onClick="submit()"></a>
</div>
</div>
<link href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="4f2d20203b3c3b3d2e3f0f7a617f617f">[email protected]</a>/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5b3934342f282f293a2b1b6e756b756b">[email protected]</a>/dist/js/bootstrap.bundle.min.js" integrity="sha384-p34f1UUtsS3wqzfto5wAAmdvj+osOnFyQFpp4Ua3gs/ZVWx6oOypYoCJhGGScy+8" crossorigin="anonymous"></script>