Align Div at bottom on main Div

后端 未结 5 1593
北荒
北荒 2020-12-28 14:16

I have two divs, one inside the other and I would like the small div to be aligned at the buttom of the main div.

Here\'s my code so far. Currently, the button is at

5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-28 14:51

    I guess you'll need absolute position

    .vertical_banner {position:relative;}
    #bottom_link{position:absolute; bottom:0;}
    

提交回复
热议问题