将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按钮对齐到中心的主要内容,如果未能解决你的问题,请参考以下文章
关于ipywidgets插件,错误'Widget Javascript not detected. It may not be installed or enabled properly.&