tags:

views:

41

answers:

2
A: 

What you can't see in that picture is the big element D in the third slot of the 3-element hbox that's in the first slot of the 2-element vbox.

Ignacio Vazquez-Abrams
+2  A: 

Try:

A: row 0, column 0, sticky=W
B: row 0, column 1, sticky=W
C: row 1, column 0, span 3
grid_columnconfigure(2, weight=4)
Max Shawabkeh