Wordpress Snippets

Make A Div Stick To Bottom Of Parent Div

Here is the HTML Markup

<div class="parent">
  
  <div class="child">
    <?php echo "Hello"; ?>
  </div>
  
</div>

And the CSS

.parent {
  position: relative;
}
  
.child {
  position: absolute;
  bottom: 0px;
}

Hire Us. Or just say Hi!
Need a job? Apply to get one.