gpt4 book ai didi

python - 将 ipywidget 按钮对齐到中心

转载 作者:行者123 更新时间:2023-12-04 14:47:33 24 4
gpt4 key购买 nike

我希望将 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'
)

最佳答案

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

关于python - 将 ipywidget 按钮对齐到中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55336771/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com