CSS implementation single-line, multiline text overflow display ellipsis

Source: Internet
Author: User

1. Single line out of display ...

<p> text text text text text text text text text text text literal text </p>p{    width:200px;    Overflow:hidden;    Text-overflow:ellipsis;    White-space:nowrap;}

Effect:

2. Multiple lines out of display ...

<p> text text, text text, text, text, text, text </p>p {width:100px; /*Limit width*/position:relative; Line-height:20px; Max-height:40px; Overflow:hidden;} P::after {content:"...";    Position:absolute; Bottom:0; Right:0; Padding-left:40px; Background:-webkit-linear-gradient (left, Transparent, #fff -%); Background:-o-linear-gradient (right, Transparent, #fff -%); Background:-moz-linear-gradient (right, Transparent, #fff -%); Background:linear-gradient (to right, transparent, #fff -%);}

Effect:

Under IE9 effect:

Note:

1. If the text does not exceed the line of the case will also appear the ellipsis, need to cooperate with JS for optimization (post-Update method)

2. Because ie6-7 does not display content contents, it is necessary to add a label compatible with ie6-7 (such as:<span>...<span/>); compatible IE8 need to replace: After replaced by: after.

CSS implementation single-line, multiline text overflow display ellipsis

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.