選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

text-overflow.less 162B

12345678
  1. // Text overflow
  2. // Requires inline-block or block for proper styling
  3. .text-overflow() {
  4. overflow: hidden;
  5. text-overflow: ellipsis;
  6. white-space: nowrap;
  7. }