Kozea / WeasyPrint

The awesome document factory
https://weasyprint.org
BSD 3-Clause "New" or "Revised" License
7.23k stars 686 forks source link

Don’t display bottom border on cells in split rows #2166

Closed liZe closed 4 months ago

liZe commented 5 months ago
<style>
  @page { margin: 0; size: 10em 4em }
  body { margin: 0 }
  td { border-bottom: 1px solid }
</style>
<table>
  <tr>
    <td>
      a
    </td>
    <td>
      a<br>
      a<br>
      a<br>
      a
    </td>
  </tr>
</table>