Skip to content

Instantly share code, notes, and snippets.

@jmxt3
Created June 30, 2020 23:21
Show Gist options
  • Save jmxt3/5145a93d3bcbe9f5bee149afb72f2323 to your computer and use it in GitHub Desktop.
Save jmxt3/5145a93d3bcbe9f5bee149afb72f2323 to your computer and use it in GitHub Desktop.
CSS folded poster effect
<div class="container">
<img src="https://source.unsplash.com/collection/1065412/200x200">
<div class="centered">Centered</div>
</div>
.container {
position: relative;
text-align: center;
color: white;
}
.centered {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment