Skip to content

Long Content

About 586 wordsAbout 2 min

2023-08-03

Long Content

This is a common contact list, and it looks perfect now.

Lao Wang

Lao Zhang

Lao Li

Old Zhao

However, since the contact name is entered by the user, we need to pay attention to how to protect the layout when the content is too long.

For example:

Lao Wang from the next door

Lao Zhang from East Street

Lao Li

Lao Zhao

In layouts like this, consistency is important. To achieve this, we can simply use text-overflow to truncate the name.

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

Lao Wang from next door

Lao Zhang from East Street

Lao Li

Lao Zhao

Example

In some cases, we may need to truncate text that is not important to the user or does not affect the user experience. In such cases, truncating the text is a good idea.

text-overflow: ellipsis

Adjust the container size to see the effect