Home › Forums › CSS › [Solved] IMG Sticking to Bottom of Page and not DIV › Reply To: [Solved] IMG Sticking to Bottom of Page and not DIV
January 13, 2015 at 11:36 am
#193106
Participant
No, it doesn’t disappear, it just has a height of 0 pixels since it has nothing inside. Absolutely positioned elements are removed from the flow (like floated ones).
Looking deeper in, the .column
class has a position: relative
property already so it’s still inside there, but if you inspect it you’ll see the image above the top of the page there.
So we’re back to needing a height applied on its parent, or removing it, or doing something hacky…