Text appears in the upper right corner in edit mode, and in the lower mid-region in game mode

I have a canvas set to “screen space, camera” and a text UI element as a child element that I moved to be in the upper left corner. However in game mode it doesn’t apepar to be anywhere close to that corner. How come?

Edit mode:

Game mode:

Your canvas scalar component on your canvas object is set to “constant pixel size” scaling, which means the UI will not resize to fit the size of your screen. Instead, use the “Scale with screen size” option.

Thank you Gambit!