I create an IntText
widget like this:
import ipywidgets as widgets
widgets.IntText(value=12,
description='CTR1_0',
style={'description_width': 'initial'})
When I include this widget in an HBox
in a Tab
, the text box is much larger than I need. How do I set it to be 10 characters?
There is no width
parameter to IntText. I have tried adding width="10ch"
to the style
parameter do not work.