I can't seem to get my widgets to wrap text.
This code:
import ipywidgets as widgets
test_layout = widgets.Layout(
border='1px solid black',
flex_flow = 'row wrap',
width = '200px')
test_string = 'test test test test test test test test test test'
test_label = widgets.Label(value = test_string, layout=test_layout)
test_label
Outputs:
What am I missing? I have tried lots of different things, but none of them have worked!