Home > Web Front-end > CSS Tutorial > How Can I Truncate Text with an Ellipsis and Append '123 T.' on the Next Line?

How Can I Truncate Text with an Ellipsis and Append '123 T.' on the Next Line?

Patricia Arquette
Release: 2024-12-04 01:24:11
Original
198 people have browsed it

How Can I Truncate Text with an Ellipsis and Append

Place Text After Dots Inline with the Second Line of Text Overflow Ellipsis

Issue

To condense excessively long text, you intend to conceal a portion of the text while indicating overflow with '...123 T.' on its succeeding line, as seen in the image below:

[Image of text truncated with an ellipsis and "123 T."]

Solution

In the near future, a single line of code with "line-clamp: 2 "...123 T.;" will suffice. Further information is available in the specification.

Disclaimer

Before this functionality becomes widely available, here's a rough workaround to achieve the desired outcome:

CSS

.container {
  max-width: 200px;
  margin: 5px;
}

.main-text {
  line-height: 1.2em;
  max-height: calc(2 * 1.2em);
  overflow: hidden;
  display: inline-block;
  position: relative;
}

.main-text:after {
  content: "123 T.";
  display: inline-block;
  width: 40px;
  position: relative;
  z-index: 999;
  box-shadow:
    40px 0 0 #fff,
    80px 0 0 #fff,
    120px 0 0 #fff,
    160px 0 0 #fff;
  color: #8e8f8f;
  font-size: 10px;
  background: #fff;
  margin-left: 2px;
}

.main-text span {
  position: absolute;
  top: 1.2em;
  right: 0;
  padding: 0 3px;
  background: #fff;
}

.main-text span:before {
  content: "...";
}

.main-text span:after {
  content: "123 T.";
  color: #8e8f8f;
  font-size: 10px;
}
Copy after login

HTML

<div class="container">
  <div class="main-text">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nam metus
    mi, dapibus sit amet posuere eu, porttitor condimentum nulla.
    Donec convallis lorem justo, eget malesuada lorem tempor vitae.
    Aliquam sollicitudin lacus ipsum, at tincidunt ante condimentum
    vitae. <span></span>
  </div>
</div>

<div class="container">
  <div class="main-text">Lorem ipsum <span></span></div>
</div>

<div class="container">
  <div class="main-text">Lo <span></span></div>
</div>

<div class="container">
  <div class="main-text">
    Lorem ipsum dolor sit ameta, adipiscing elit. Nam metus <span></span>
  </div>
</div>

<div class="container">
  <div class="main-text">
    Lorem ipsum dolor sit ameta, adipiscing elit <span></span>
  </div>
</div>
Copy after login

The above is the detailed content of How Can I Truncate Text with an Ellipsis and Append '123 T.' on the Next Line?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
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
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template