I want to have a frame and I need to pack labels inside it but when i do it just screws everything up.
frame_1 = Frame(root, height=125, width=250, bg="white", highlightthickness=4).pack()
def add_label():
label = Label(frame_1, text="text", bg="black", fg="White").pack()
and when I run the programm it looks like this https://i.stack.imgur.com/LECa1.png note that the frame itself is white.
I don't understand why it won't pack it in the frame but instead below it...