Home Web Front-end Front-end Q&A A Deep Dive into Some CSS3 Tips Beyond Ellipses

A Deep Dive into Some CSS3 Tips Beyond Ellipses

Apr 23, 2023 am 10:13 AM

The text-overflow property in CSS3 is a very useful feature that allows us to control how the text content of an element is displayed when it exceeds the size of its container. By default, text outside the container is replaced by ellipses (...). In this article, we’ll dive into some of the tricks and uses of CSS3 beyond the ellipsis.

Basic usage

First, let’s take a look at the basic usage of the text-overflow attribute. It has three optional values:

  • clip: Clip the text beyond the container without displaying ellipses.
  • ellipsis: Displays an ellipsis at the end of the container. (Default)
  • string: Display the specified string at the end of the container.

Here is a simple example showing how to display an ellipsis at the end of a container:

div {
  width: 200px;
  white-space: nowrap; /* 防止文本换行 */
  overflow: hidden; /* 隐藏超出容器的文本 */
  text-overflow: ellipsis; /* 显示省略号 */
}
Copy after login

This will display a line of text in a 200 pixel wide div. When the text exceeds the container size, it is clipped and replaced with ellipses.

Use before or after pseudo-elements to add ellipses

Use the style attribute text-overflow to realize that the text exceeds the ellipses. Generally, the ellipsis is added at the end of the container. This solution is the simplest, but also the most common approach. If we want to make more highlights, then we need to think about more innovative approaches.

Using the CSS pseudo-element :before or :after can easily add an ellipsis. This method can usually achieve special effects (for example: left-aligned ellipsis text). By adding styles, we can control how the pseudo-element displays and override the display of the original text.

The following code demonstrates adding an ellipsis to the right of a container:

div {
  position: relative;
  width: 200px;
  white-space: nowrap;
  overflow: hidden;
}

div:before {
  content: "...";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #fff;
  padding: 0 2px;
}
Copy after login

This will add an ellipsis to the right of the container. We placed the pseudo-element in the upper right corner of the container using absolute positioning and added a white background and some padding to it to ensure the ellipses were fully visible.

Use the CSS3 calc() function to control the available space for ellipses

The calc() function in CSS3 allows us to use mathematical expressions in CSS, which is very useful for dynamically calculating size or spacing. In excess of ellipses, we can use the calc() function to control the available space to ensure that the text and ellipsis can be displayed completely.

The following code demonstrates how to display text and ellipses in a container that is 300 pixels wide:

div {
  width: 300px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

div span {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 20px); /* 容器宽度-省略号的宽度 */
  vertical-align: top;
}

div span:after {
  content: '...';
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 100%;
  text-align: center;
  background-color: #fff; /* 背景色和容器一致 */
}
Copy after login

In the above code, we use two key styles: the calc() function and span elements. The Span element is set to inline-block, which allows text to occupy a line by itself without affecting the rendering of other elements. Use the max-width attribute to set the maximum width of the span element to the width of the container minus the width of the ellipsis. This ensures that the text does not exceed the available space of the container.

Using CSS3 Flexbox

Flexbox layout in CSS3 is very useful, it allows us to create flexible and responsive layouts using CSS. When we need to display multiple lines of text in a container and want to add an ellipse to the last line, using Flexbox layout is a good choice.

The following code demonstrates how to use Flexbox layout to display multiple lines of text in a container that is 300 pixels wide and add an ellipsis on the last line:

div {
  display: flex;
  flex-direction: column;
  height: 80px;
  width: 300px;
  overflow: hidden;
}

div p {
  flex: 1;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

div p:last-child {
  overflow: visible; /* 显示容器溢出的文本 */
  text-overflow: '';
  white-space: normal;
}
Copy after login

In the above code, we use There are three key style attributes: display: flex, flex-direction: column and flex: 1. The Flex container is set to flex-direction: column, so that the child elements are arranged vertically. Each paragraph element is set to flex: 1 to ensure that it takes up the full height of the container.

The last paragraph element is set to overflow: visible so that it overflows the container and displays all text. We also set the text-overflow property to an empty string so that it doesn't clip the text to ellipses. This way, the text in the last paragraph element will naturally overflow on the last line of the container, and Flexbox layout will automatically add the ellipsis to the last line.

Summary

In this article, we explored some techniques and uses of CSS3 beyond ellipses. In addition to the basic text-overflow property, we also demonstrate how to use pseudo-elements and the CSS3 calc() function to achieve more creative effects. We also covered how to use CSS3 Flexbox layout to display multiple lines of text and add ellipses. No matter which technology you use, make sure you use best practices when displaying text. This will ensure that the text renders well in a variety of contexts.

The above is the detailed content of A Deep Dive into Some CSS3 Tips Beyond Ellipses. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is useEffect? How do you use it to perform side effects? What is useEffect? How do you use it to perform side effects? Mar 19, 2025 pm 03:58 PM

The article discusses useEffect in React, a hook for managing side effects like data fetching and DOM manipulation in functional components. It explains usage, common side effects, and cleanup to prevent issues like memory leaks.

Explain the concept of lazy loading. Explain the concept of lazy loading. Mar 13, 2025 pm 07:47 PM

Lazy loading delays loading of content until needed, improving web performance and user experience by reducing initial load times and server load.

What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? What are higher-order functions in JavaScript, and how can they be used to write more concise and reusable code? Mar 18, 2025 pm 01:44 PM

Higher-order functions in JavaScript enhance code conciseness, reusability, modularity, and performance through abstraction, common patterns, and optimization techniques.

How does currying work in JavaScript, and what are its benefits? How does currying work in JavaScript, and what are its benefits? Mar 18, 2025 pm 01:45 PM

The article discusses currying in JavaScript, a technique transforming multi-argument functions into single-argument function sequences. It explores currying's implementation, benefits like partial application, and practical uses, enhancing code read

How does the React reconciliation algorithm work? How does the React reconciliation algorithm work? Mar 18, 2025 pm 01:58 PM

The article explains React's reconciliation algorithm, which efficiently updates the DOM by comparing Virtual DOM trees. It discusses performance benefits, optimization techniques, and impacts on user experience.Character count: 159

What is useContext? How do you use it to share state between components? What is useContext? How do you use it to share state between components? Mar 19, 2025 pm 03:59 PM

The article explains useContext in React, which simplifies state management by avoiding prop drilling. It discusses benefits like centralized state and performance improvements through reduced re-renders.

How do you prevent default behavior in event handlers? How do you prevent default behavior in event handlers? Mar 19, 2025 pm 04:10 PM

Article discusses preventing default behavior in event handlers using preventDefault() method, its benefits like enhanced user experience, and potential issues like accessibility concerns.

What are the advantages and disadvantages of controlled and uncontrolled components? What are the advantages and disadvantages of controlled and uncontrolled components? Mar 19, 2025 pm 04:16 PM

The article discusses the advantages and disadvantages of controlled and uncontrolled components in React, focusing on aspects like predictability, performance, and use cases. It advises on factors to consider when choosing between them.

See all articles