MindaugasKTU
3
Q:

text limit in css

div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
10
/*CSS to limit the text length inside a div*/
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
0
body {
   margin: 20px;
}

.text {
   overflow: hidden;
   text-overflow: ellipsis;
   display: -webkit-box;
   -webkit-line-clamp: 2; /* number of lines to show */
   -webkit-box-orient: vertical;
}
0

New to Communities?

Join the community