flutter_widget_from_html
flutter_widget_from_html copied to clipboard
second td style is display:block not available
<!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
actual
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.