Is their any coding that will put a table next to a table in the source code. Basically i have a table aligned left with 40% and then another table aligned right with 50% but they are still below each other. How do I get that second table to sit on the same lines just to the right of the first table?
j
Jon Kears
09/30/2019, 10:15 PM
yeah I struggled for ages with % but no dice. I think the margins come into play somehow but I couldn't work it out. So I just cheated and used fixed width
on table a I had
width: 130pt;
display: inline;
on table b I had
width: 425pt;
display: inline;
align: right;
Jon Kears
09/30/2019, 10:16 PM
for pdf using a known paper size, this is ok.
t
TJ Cornelius
10/01/2019, 2:05 AM
@Cr223309 usually to do that I would just put tables inside of a main table. So have one table with 1 row and two sections, and put a table in each of those sections. That’s the easiest way to put tables side by side.
j
Jon Kears
10/01/2019, 2:06 AM
I did consider this too, but the css police will put you in jail for that đŸ˜‚