aamir
0
Q:

css ellipsis

div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
10
//Truncate text overflow 
.element {
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}
2

    div
 {
  white-space: nowrap; 
  overflow: 
    hidden;
 
 text-overflow: ellipsis;

 }
 
1
.element{

  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}
4
.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
1
white-space:normal !important;
word-wrap:break-word;
0
overflow: scroll;
white-space: nowrap;
1
max-width: 100px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
0

New to Communities?

Join the community