Is there a way to align list items on top of each other for a breakpoint <=575px (xs), and align the items next to each other for a breakpoint >575px (sm) using Bootstrap display properties?
I found some information on How to display a list inline using Twitter's Bootstrap suggesting the use of 'list-inline'. Here is an example:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<ul class="list-inline">
<li class="list-inline-item">Lorem ipsum</li>
<li class="list-inline-item">Phasellus iaculis</li>
<li class="list-inline-item">Nulla volutpat</li>
</ul>
While this method works in general, I'm not sure how it behaves with different breakpoints. Typically, Bootstrap allows setting breakpoints using notation like 'd-sm-block' (visible only on min-width: 576px), but there seems to be no specific documentation about 'list-inline' in relation to breakpoints.