Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

9 lines
162B

  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. }