Hi. Anyone know how I can print 2 tables on a line...
# advancedpdf
p
Hi. Anyone know how I can print 2 tables on a line for a saved search? I tried
width: 50%; display: inline-block; float: left; overflow: visible;
in the container and it's still print out as a stack
j
I really struggled to get it working with %. Ended up using this which is in points but fine as our whole business uses A4 paper size left hand table
Copy code
table.currsum {
      page-break-inside: avoid;
      margin-top: 10px;
      border: 1px solid;
      width: 130pt;
      display: inline;
      vertical-align: top;
        }
Right hand table
Copy code
table.total {
      page-break-inside: avoid;
      vertical-align: top;
      width: 425pt;
      display: inline;
      align: right;
                }
p
so I tried display: inline for the table and container, width: 250pt for the container. it does print out as 2 tables side by side so that's working but it's cut off after page 1.