html2canvas icon indicating copy to clipboard operation
html2canvas copied to clipboard

Overlap text in p tag enclosed in table

Open atlansien opened this issue 3 years ago • 1 comments

  • [x] I am using the latest version

system: mac OS & Windows 10 browser: Chrome 100

Overlap text in p tag enclosed in table

page スクリーンショット 2022-04-05 14 51 35

pdf スクリーンショット 2022-04-05 14 51 23

<table>
  ...
  <tbody>
  ...
    <tr>
      <td>
        <p class="hoge">
          テストテストテストテストテストテストテストテストテストテストテストテストテストテストテストテスト93-94kg台で推移している。
        </p>
      <td>
    <tr>
  </tbody>
</table>

.hoge {
  word-break: break-all;
  max-height: 10mm;
  overflow-y: hidden;
  padding: 2px 0;
  font-size: 10px;
  line-height: 11px;
}

word-break: break-word do not work. スクリーンショット 2022-04-05 15 10 24

Words may be incorrect due to the use of translation tools

thanks

atlansien avatar Apr 05 '22 06:04 atlansien

me too

LazyJoke avatar Mar 18 '24 08:03 LazyJoke