Created
April 2, 2020 14:53
-
-
Save kervel/2739853b648ae65a8e4162ecc9a3763f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def make_box_layout(): | |
return widgets.Layout( | |
border='solid 1px red', | |
margin='0px 10px 10px 0px', | |
padding='5px 5px 5px 5px' | |
) | |
vbox1, vbox2 = make_boxes() | |
vbox1.layout = make_box_layout() | |
vbox2.layout = make_box_layout() | |
# really change vbox1 only | |
vbox1.layout.width = '400px' | |
vbox1.layout.border = 'solid 2px green' | |
widgets.HBox([vbox1, vbox2]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment