zoukankan      html  css  js  c++  java
  • ff文字省略号

    写手机端页面的时候遇到,文字超过两行,多的文字需要省略。

    css代码:

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    写这些就好,由于手机端页面无兼容性;用FF的浏览器看到效果的时候,有很大的兼容问题。

    百度了一下,发现有用after的写法,无任何兼容问题!服气~

    跨浏览器兼容的方案

    比较靠谱简单的做法就是设置相对定位的容器高度,用包含省略号(…)的元素模拟实现;

    例如:

    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. }

      学习了

  • 相关阅读:
    SAP Easy tree
    SAP Column tree
    SAP Tree
    SAP 文本框多行输入
    SAP -SE30 程序运行时间分析
    SAP 实例- 页签tabsrip
    ABAP CDS
    ABAP CDS
    ABAP CDS
    ABAP CDS
  • 原文地址:https://www.cnblogs.com/shy-z/p/5509026.html
Copyright © 2011-2022 走看看