Check out this test code here - https://jsfiddle.net/8dgeh9r3/1/
I have set up two scenarios to simulate. In the first scenario, there is a main parent flex container with multiple intermediary parents (which are also flex boxes that inherit properties from the top), and finally a child item. The main parent sets align-items
to flex-start
, but the last child should have align-self
of flex-end
. However, it doesn't seem to be functioning as expected.
In the second scenario, I created a case where there are no intermediate parents, just the main parent and its single child item. The flex styles still do not seem to take effect.
NOTE: My goal is for the child item(s) to align horizontally along the axis from left to right.
What could be the issue here?