将ipywidget按钮对齐到中心

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将ipywidget按钮对齐到中心相关的知识,希望对你有一定的参考价值。

我希望从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'
)
答案

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

另一答案

使用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)

以上是关于将ipywidget按钮对齐到中心的主要内容,如果未能解决你的问题,请参考以下文章

将 AlertDialog 按钮对齐到中心

将按钮对齐到 div 的中心

如何将两个按钮和视图从左到中对齐,从中心到右对齐

无法将单选按钮对齐到中心(垂直)[重复]

如何将箭头图标垂直对齐到中心

关于ipywidgets插件,错误'Widget Javascript not detected. It may not be installed or enabled properly.&