C
C
codemix2016-03-19 20:50:41
css
codemix, 2016-03-19 20:50:41

How to make a right column in bootstrap?

How to make the right columns in a row using bootstrap, regardless of the left one?
Such a layout
Here's how it turns out

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nemby, 2016-03-19
@codemix

I would do this:

<div class="container">
<div class="row">
<div class="col-md-8">
  <div class="thumbnail">первая "широкая"колонка для контента</div>
</div>
<div class="col-md-4">
  <div class="thumbnail">вторая боковая колонка</div>		
  <div class="thumbnail">третья боковая колонка - под второй</div>
</div>
</div>
</div>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question