Implementation sample code that hides and displays the ellipsis after the CSS text is outside the specified width

Source: Internet
Author: User
The following small series for everyone to bring the CSS text beyond the specified width after hiding and display as an ellipsis implementation of the sample code. Small series feel very good, now share to everyone, also for everyone to make a reference. Let's take a look at it with a little knitting.

Generic truncation of text (for inline and block):

. text-overflow {       display:block;/* inline objects need to be added */  width:25em;       word-break:keep-all;/* do not wrap */  whitewhite-space:nowrap;/* do not wrap */  overflow:hidden;/* content beyond the width to hide the contents of the outside part of the * *  text-overflow:ellipsis;/* display ellipsis (...) when text inside an object overflows; use with Overflow:hidden; */}


For the definition of a table literal overflow:

Show ellipsis for table out of range

table{        width:25em;        table-layout:fixed;/* only the table-defined layout algorithm is fixed, the following TD definition will work. */}   td{     width:100%;       word-break:keep-all;/* do not wrap */  whitewhite-space:nowrap;/* do not wrap */  overflow:hidden;/* content beyond the width to hide the contents of the outside part of the * *  text-overflow:ellipsis;/* display ellipsis (...) when text inside an object overflows; use with Overflow:hidden; */}


Code:

<style type= "Text/css" > #p1 {             padding:10px;            width:200px;            height:30px;            text-shadow:3px 3px 3px #aaaaaa;            border:1px solid #999999;            text-overflow:ellipsis;            Overflow:hidden;            Word-break:break-all;            white-space:nowrap;            }   </style><body><p id= "P1" title= "aaaaaaaaaaaaabbbbbbbbbbbbbccccccccccccccdddddddddddd" >          AAAAAAAAAAAAABBBBBBBBBBBBBCCCCCCCCCCCCCCDDDDDDDDDDDD   </p></body>
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.