如何阻止表格溢出margin-bottom(大虾表)

时间:2018-09-25 11:52:10

标签: ruby-on-rails ruby prawn

我有一个将显示表格的大虾文档。我在页面底部设置了一个空白页边。

  1. 我不希望表格溢出此边距。
  2. 我希望表格在下一页继续。

我已将表格设置在bounding_box内。此方法有效,但是表格在下一页的同一位置(页面的中间)重复出现

  bounding_box([150.mm, 500], width: 200, height: 300) do
                table data, table_options do
                   style(row(0), font_style: :bold, background_color: 'f9fbff')
                   style(column(1..-1), border_width: 1, border_color: 'ffffff', align: :right)
                   style(row(-1), align: :right, padding: [8, 5], background_color: 'fcfcfc', font_style: :bold, border_width: 0, size: 9)
            end

这是怎么做的?

0 个答案:

没有答案