Sub6Resources / flutter_html

A Flutter widget for rendering static html as Flutter widgets (Will render over 80 different html tags!)
https://pub.dev/packages/flutter_html
MIT License
1.79k stars 860 forks source link

Unable to get center text with span #1228

Open vikramsinghrajpoot opened 1 year ago

vikramsinghrajpoot commented 1 year ago
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<p style="text-align:center;width:100%;">
  <span style="font-family:TheinhardtPan;">You have completed Day 1.</span>
</p>
</body>
</html>

inline styling text-align:center not working for single line, when add more than 2 line its starts working

Sub6Resources commented 1 year ago

Which flutter_html version is this on?

Sub6Resources commented 1 year ago

This is related to an issue with width:100% being interpreted as width:100px. If you remove the width:100%, it works as expected on 3.0.0-beta.1