将ipywidget按钮对准中心

时间:2019-03-25 11:27:18

标签: python ipywidgets

我希望将ipywidget函数中的按钮对象对准中心。这是我正在使用的代码示例

bt = widgets.Button(layout=Layout(width='180px'),style = 
    {'description_width': '25%'})
b_config_save = widgets.Button(
    description="Save",
    layout=bt.layout,
    style=bt.style,
    button_style='primary'
)

2 个答案:

答案 0 :(得分:0)

尝试使用表格,也许您可​​以找到一些帮助here

答案 1 :(得分:0)

使用flexbox布局,如下所示。

btn = widgets.Button(description="Save")
box_layout = widgets.Layout(display='flex',
                flex_flow='column',
                align_items='center',
                width='50%')
box = widgets.HBox(children=[btn],layout=box_layout)
display(box)