Home > Software design >  left align text on setting Label width
left align text on setting Label width

Time:08-04

I have a label inside a grid with a fixed width like this:

Label(popup,text="Testing",width=25,justify="left").grid(row=1,column=1,sticky="w",padx=(0,10),pady=10)

enter image description here

I need the text to align to the left and hide the overflow if any occurs,
How do I achieve this?

CodePudding user response:

You need to specify an Screenshot

  • Related