FF literal ellipsis

Source: Internet
Author: User

Write mobile phone page when encountered, more than two lines of text, more text needs to be omitted.

CSS code:

Overflow:hidden;
Text-overflow:ellipsis;
Display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;

This is good, because the mobile phone page is not compatible with the FF browser to see the effect of the time, there is a lot of compatibility issues.

Baidu a bit, found useful after the wording, no compatibility problems! Convinced ~

Cross-Browser compatible scenarios

A relatively simple way is to set the relative positioning of the container height, with the inclusion of ellipses (...) Implementation of elemental simulation;

For example:

  1. P {
  2. Position:relative;
  3. Line-height:1.4em;
  4. / * 3 times the line-height to show 3 lines * /
  5. Height:4.2em;
  6. Overflow:hidden;
  7. }
  8. P::after {
  9. Content:"...";
  10. Font-weight:bold;
  11. Position:absolute;
  12. Bottom:0;
  13. Right:0;
  14. Padding:0 20px 1px 45px;
  15. Background:URL(http://css88.b0.upaiyun.com/css88/2014/09/ellipsis_bg.png) repeat-y;
  16. }

Study the

FF literal ellipsis

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.