I am trying to make the bootstrap scaffolding to work. I have two tables, one left, one right, both inside a row. Please see this fiddle.
For some reason the tables appear one under the other. How can I get both tables to be at the same hight?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you dont need to use
offset 8with your second table, thats 12 on its own. If one table is aspan4and the other is aspan4they will sit side by side with aspan4remaining…each row consumes a spans of 12 columns, you had 4 in your first table, 8 between the tables, and another 4 for your second table.. making 16 columns, and so, two rows (16/12)
if you use
span4plusoffset3 span4you get 11 columns! well within the 12 column default limit 🙂so if you wanted you could use
offset2for some space between themhttp://jsfiddle.net/D2RLR/84/