Skip to content

Instantly share code, notes, and snippets.

@olivmonnier
Created February 12, 2015 13:31
Show Gist options
  • Save olivmonnier/bb3d7a53a37ff8f23c08 to your computer and use it in GitHub Desktop.
Save olivmonnier/bb3d7a53a37ff8f23c08 to your computer and use it in GitHub Desktop.
Create div element relative to img width
<div class="wrapper">
<div class="img-bloc">
<img src="/"/>
<div class="actions-bloc">
<a href="#" class="btn">Learn more</a>
</div>
</div>
</div>
.wrapper {
position: relative;
display: inline-block;
}
.img-bloc {
float:left;
}
.actions-bloc {
position: absolute;
left: 0;
right: 0;
bottom: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment