So, I have tkinter
labels and I want the text within them to be left aligned
. I am using justify=LEFT
but it isn't working. I can't figure out why?
This is the code for my Label Widget:
Label(displayWindow, text=value, width=15, borderwidth=3, justify=LEFT, relief=GROOVE, font=("times",13,"bold"), bg="lightblue").grid(row=row_num+1,column=col, padx=5, sticky=EW)
NOTE: How the contents in column First Name
and Last Name
are not LEFT
aligned they are still CENTER
aligned.