Skip to main content
13-Aquamarine
May 18, 2021
Solved

How to wrap text or get multi line text for a Checkbox placed inside a popup

  • May 18, 2021
  • 1 reply
  • 2728 views

Hi ,

I have added some long text in the Label of Checkbox which cannot be shown in single line , is there a way to warp this text & have multiline in this checkbox. This is a 2D Widget checkbox added inside a Popup 

Can anyone please help me with the CSS coding to resolve this issue

Best answer by ClayHelberg

It looks like it should work to add a class (e.g. "wrap-label") to your Checkbox widget, and then set the CSS to include

 

.wrap-label { white-space: normal; }

 

1 reply

18-Opal
May 31, 2021

It looks like it should work to add a class (e.g. "wrap-label") to your Checkbox widget, and then set the CSS to include

 

.wrap-label { white-space: normal; }

 

anupds13-AquamarineAuthor
13-Aquamarine
June 4, 2021

Thanks a lot  ClayHelberg , it is working