arvstracthoughts
arvstracthoughts

Reputation: 770

twitter bootstrap align tables side by side

Is there anyway I can lineup tables side by side in twitter bootstrap, I want to achieve this:

enter image description here

Thank you very much in advance!

Upvotes: 0

Views: 1738

Answers (1)

arvstracthoughts
arvstracthoughts

Reputation: 770

Never mind just Googled that the span* class in twitter bootstrap is already depreciated and replaced by the col-md-* function and it's other counterparts.

I have solved my problem by wrapping the two tables in

<div class="col-md-*">

I have used this for the first table:

<div class="col-md-3"> 
    <table>....</table>
</div>

and this for the second table

<div class="col-md-9">
    <table>....</table>
</div>

Upvotes: 2

Related Questions