Answers for "how to clip text in html"

1

css clip text

div.a {
  white-space: nowrap; 
  width: 100px; 
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid #000000;
}

/*or==============*/ 

p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*/this will show text like this 
This is some long text........*/
Posted by: Guest on April-22-2022
0

copy the text html

<a class="cls_copy_pg_action copyAction copy-action-btn" data-value="THIS TEXT WILL BE COPIED"> <i class="far fa-copy"></i> Copy</a>
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language