flutter_widget_from_html icon indicating copy to clipboard operation
flutter_widget_from_html copied to clipboard

second td style is display:block not available

Open mmtou opened this issue 11 months ago • 1 comments

<!doctype html>
<html>
<head>
  <title>email template</title>
</head>
<body>
  <table>
    <tr>
      <td>222</td>
      <td style="display: block;">111</td>
    </tr>
  </table>
</body>
</html>

expect

Image

actual

Image

mmtou avatar Feb 18 '25 05:02 mmtou

The inline block value overwrites the table-cell display mode so the contents are hidden from the table. Let me see what can be done here.

daohoangson avatar Feb 18 '25 05:02 daohoangson