Reputation: 2576
Bootstrap's Horizontal description is the element I need, but I don't want it to stack on small devices. Is it that possible? Thanks
Upvotes: 0
Views: 34
Reputation: 900
This is taken straight from the official documentation.
You can replace the text .col-xs-6
given in the example below to your horizontal description.
<!-- Columns are always 50% wide, on mobile and desktop -->
<div class="row">
<div class="col-xs-6">.col-xs-6</div>
<div class="col-xs-6">.col-xs-6</div>
</div>
Upvotes: 1