Open
Description
Describe the bug:
Setting the margin parameter to Margins.zero
provide different results than not providing it at all wich differs from documentation - style.dart
HTML to reproduce the issue:
"Lorem Ipsum"
Html
widget configuration:
Html(data: "Lorem Ipsum")
Html(
data: "Lorem Ipsum",
style: {
"*": Style(
margin: Margins.zero,
),
},
),
Expected behavior:
Text should be rendered without any margin in both cases
Screenshots:
Additional info:
This problem has been referenced before - #1053, but never fixed