Answers for "hiding text css and leaving whitespace"

CSS
4

css overflow truncate

//Truncate text overflow 
.element {
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
}
Posted by: Guest on June-05-2020
4

truncate text css

.element{

  text-overflow: ellipsis;

  /* Required for text-overflow to do anything */
  white-space: nowrap;
  overflow: hidden;
}
Posted by: Guest on May-14-2020
0

hiding text css and leaving whitespace

visibility: hidden;
Posted by: Guest on January-16-2021

Code answers related to "hiding text css and leaving whitespace"

Browse Popular Code Answers by Language