I've started to experiment with flexbox lately, but still can't wrap my head around some things.
I am trying to create a simple layout with three flex items (children). The container is set to flex-direction: column and all the flex items are centered horizontally and vertically.
I would like one of the flex items to be positioned at the top left corner.
Basically like I am using position: absolute with top: 30px; left: 30px;.
I know that align-self is used to override styles for each flex item, but I can't get it to work.