align nested div to base of parent div


/ Published in: CSS
Save to your folder(s)



Copy this code and paste it in your HTML
  1. div.parent {
  2. position: relative;
  3. }
  4. div.nested {
  5. position: absolute;
  6. bottom: 0;
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.