Skip to content

Instantly share code, notes, and snippets.

@019ec6e2
Created May 30, 2017 05:54
Show Gist options
  • Save 019ec6e2/ac07b64ff3821e556d60c726ec0bee04 to your computer and use it in GitHub Desktop.
Save 019ec6e2/ac07b64ff3821e556d60c726ec0bee04 to your computer and use it in GitHub Desktop.
/* styles for '...' */
.block-with-text {
/* hide text if it more than N lines */
overflow: hidden;
/* for set '...' in absolute position */
position: relative;
/* use this value to count block height */
line-height: 1.2em;
/* max-height = line-height (1.2) * lines max number (3) */
max-height: 4.8em;
/* fix problem when last visible word doesn't adjoin right side */
text-align: justify;
/* place for '...' */
margin-right: -1em;
padding-right: 1em;
}
/* create the ... */
.block-with-text:before {
/* points in the end */
content: '...';
/* absolute position */
position: absolute;
/* set position to right bottom corner of block */
right: 0;
bottom: 0;
}
/* hide ... if we have text, which is less than or equal to max lines */
.block-with-text:after {
/* points in the end */
content: '';
/* absolute position */
position: absolute;
/* set position to right bottom corner of text */
right: 0;
/* set width and height */
width: 1em;
height: 1em;
margin-top: 0.2em;
/* bg color = bg color under block */
background: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment