Skip to content

Instantly share code, notes, and snippets.

@clintonmedbery
Created November 17, 2020 20:53
Show Gist options
  • Save clintonmedbery/77f8e99d124fdfcd6fc985b0aafc9215 to your computer and use it in GitHub Desktop.
Save clintonmedbery/77f8e99d124fdfcd6fc985b0aafc9215 to your computer and use it in GitHub Desktop.
Bottom Fade
.container {
margin-bottom: 5px;
padding-bottom: 5px;
width: 233px;
overflow:hidden;
text-overflow: ellipsis;
content: "";
position:relative;
max-height: 19em;
}
.container:after {
content:'';
width:100%;
height:30px;
position:absolute;
left:0;
bottom:0;
background:linear-gradient(to bottom, transparent, white);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment