美文网首页
一些css常用的css技巧

一些css常用的css技巧

作者: 记忆的伤痕 | 来源:发表于2017-03-12 11:15 被阅读0次


    移动端1px实现的方法

    .border-1px{

    position:relative;

    }

    .border-1px:after{

    content:'';

    position:absolute;

    left:0;

    bottom:0;

    right:auto;

    top:auto;

    height:1px;

    width:100%;

    background-color:#666;

    display:block;

    z-index:15;

    -webkit-transform-origin:50% 100%;

    transform-origin:50% 100%;

    }

    @mediaonly screen and (-webkit-min-device-pixel-ratio:2) {

    .border-1px:after{

    -webkit-transform:scaleY(0.5);

    transform:scaleY(0.5);

    }

    }

    @mediaonly screen and (-webkit-min-device-pixel-ratio:3) {

    .border-1px:after{

    -webkit-transform:scaleY(0.33);

    transform:scaleY(0.33);

    }

    }

    2.多行省略(以2行为例)

    %twoellipsis{

    overflow:hidden;

    text-overflow:ellipsis;

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    }

    相关文章

      网友评论

          本文标题:一些css常用的css技巧

          本文链接:https://www.haomeiwen.com/subject/znetnttx.html