Bertuz
Bertuz

Reputation: 2576

avoid horizontal description to stack on small devices

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

Answers (1)

Simple Sandman
Simple Sandman

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

Related Questions