How to Limit Bootstrap Column Width on Large Devices

Viewed 35695

I have the following divs that use Bootstrap 3.0 CSS:

<div class="container">
  <div class="row">
    <div class="col-md-4">
      ...
    </div>
    <div class="col-md-4">
      ...
    </div>
    <div class="col-md-4">
      ...
    </div>
  </div>
</div>

While this looks and behaves the way I want on XS to medium-sized devices, the expanded columns on large devices (>1200px) ruin my design.

Is there a way to stop bootstrap from expanding column width to 95px on large devices?

1 Answers
Related