更改 ipython 小部件切换按钮的布局
Changing the layout of the ipython widgets toggle buttons
这些是我要自定义的按钮:
code 本身。
这是我想要得到的结果(由 GIMP 编辑):
我想让这些按钮垂直堆叠(如我制作的编辑图像所示),但由于我对 CSS 了解不多,所以我不知道该怎么做。有什么建议吗?
我不知道该怎么做给定宽度。
正如所说,layout=widgets.Layout(width='100px')
会做到。
widgets.ToggleButtons(
options=['A','B', 'C'],
disabled=False,
button_style='info', # 'success', 'info', 'warning', 'danger' or ''
layout=widgets.Layout(width='100px')
# icons=['check'] * 3
)
这些是我要自定义的按钮:
code 本身。
这是我想要得到的结果(由 GIMP 编辑):
我想让这些按钮垂直堆叠(如我制作的编辑图像所示),但由于我对 CSS 了解不多,所以我不知道该怎么做。有什么建议吗?
我不知道该怎么做给定宽度。
正如layout=widgets.Layout(width='100px')
会做到。
widgets.ToggleButtons(
options=['A','B', 'C'],
disabled=False,
button_style='info', # 'success', 'info', 'warning', 'danger' or ''
layout=widgets.Layout(width='100px')
# icons=['check'] * 3
)