I have two divs inside another div, and I want to position one child div to the top right of the parent div, and the other child div to the bottom of the parent div using cs
Incase someone wants to postion a child div directly under a parent
#father { position: relative; } #son1 { position: absolute; top: 100%; }
Working demo Codepen