cut paragraph css code example
Example 1: antialiasing css
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
//Also use webfonts: https://www.fontsquirrel.com/
Example 2: text overflow ellipsis css
div {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
Example 3: css ellipsis max width
.text-ellipsis{
display: block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}