Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

I have two html tables already created wrapped in the wrapper.

How can I place these two tables side by side instead of 1 above the other?

share|improve this question
Some sourcode might be nice, also I think this might be a question for SF rather than SU – Lucas Kauffman Jul 27 '12 at 14:54
Create a third table and place each of the two tables in a column of the third. – Dennis Jul 27 '12 at 14:56

closed as off topic by Dennis, Oliver Salzburg Jul 27 '12 at 15:01

Questions on Super User are expected to relate to computer software or computer hardware within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Here you go:

[div style="display: inline-table"] table1 [/div]  
[div style="display: inline-table"] table2 [/div]

Replace [ with < and ] with >

Wrapping both of them in the div will produce the exact result you want.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.