Nilesh
Nilesh

Reputation: 135

Show <tfoot> footer always at the bottom

I have following html which is used to render a PDF file, I need to render the <tfoot> section always at the bottom of every page even if the content of the page are small.

<div class="pdf-position-top pdf-content-center">
  <table>
    <thead>
      <tr>
        <th>
          <div class="print-banner">
            <span class="banner-text-repeat">Some Text</span>
          </div>
        </th>
      </tr>
    </thead>
    @RenderSection("TableBody", required: true)
    <tr>
      <td>
        <div class="pdf-content-center">@RenderBody()</div>
      </td>
    </tr>
    <tfoot>
      <tr>
        <td>
        <!--START print-banner top-->
          <div class="print-banner">
            <span class="banner-text-repeat">Some Text</span>
          </div>
        </td>
      </tr>
    </tfoot>
  </table>
</div>

Upvotes: 2

Views: 645

Answers (1)

Justinas
Justinas

Reputation: 43507

From documentation of header/footer

EO.Pdf.HtmlToPdf.Options.HeaderHtmlFormat = '<div class="print-banner">
        <span class="banner-text-repeat">Some Text</span>
    </div>'

Upvotes: 1

Related Questions