Remove automatic gap between gridded python Tkinter widgets
问题 I'm using python2 on Windows. When I run the followig code, I get a gap between the two canvas (see picture below), although there is no padding specified when I grid them. Is there any possibility to remove this? import Tkinter as tk import ttk class App(tk.Tk): def __init__(self, *args, **kwargs): tk.Tk.__init__(self, *args, **kwargs) self.c1 = tk.Canvas(master=self, background='white', borderwidth=0, relief=tk.FLAT) self.c2 = tk.Canvas(master=self, background='white', borderwidth=0, relief