from ipywidgets import widgets, Layout from IPython.display import display  checkbox = widgets.Checkbox(value=False, disabled=False, layout=Layout(width='300px')) #just vary the Layout attribute according to your liking box = widgets.HBox([checkbox, label]) display(box) 

Read more of this post