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.8k stars 874 forks source link

[QUESTION] span border/padding/margin #1284

Closed Skyonave closed 1 year ago

Skyonave commented 1 year ago

Hello guys. Please tell me why the border/padding/margin is not working on <span></span>? And how can I fix it without moving everything to the next line on the right? image image

Skyonave commented 1 year ago

I want to achieve this behavior image image

Sub6Resources commented 1 year ago

Adding display: Display.inlineBlock to your style will get you what you are looking for. We don't currently support borderRadius (but I anticipate we will soon).

Skyonave commented 1 year ago

Adding display: Display.inlineBlock to your style will get you what you are looking for. We don't currently support borderRadius (but I anticipate we will soon).

I tried using Display.INLINE_BLOCK. It didn't help me

Sub6Resources commented 1 year ago

You'll need to migrate to the latest version: 3.0.0-beta.1

Kreshnik commented 1 year ago

@Sub6Resources is there a way to apply borderRadius using style to a paragraph or anchor?

Sub6Resources commented 1 year ago

Border radius is not currently supported.

Kreshnik commented 1 year ago

Thank you for the quick response @Sub6Resources