text-overflow.html 411 B

123456789101112131415161718
  1. <!doctype html>
  2. <link rel="match" href="reference/text-overflow.html" />
  3. <style>
  4. div {
  5. overflow: hidden;
  6. white-space: nowrap;
  7. width: 75px;
  8. }
  9. .clip {
  10. text-overflow: clip;
  11. }
  12. .ellipsis {
  13. text-overflow: ellipsis;
  14. }
  15. </style>
  16. <div class="clip">This text gets clipped</div>
  17. <div class="ellipsis">This text gets an ellipsis</div>
  18. <div class="ellipsis" style="width: 0px">Invisible</div>