文本溢出隐藏

1、单行文本溢出隐藏

{

        overflow : hidden;

        text-overflow : ellipsis;

        white-space : nowrap;

}

2、多行文本溢出

{

        overflow : hidden;

        text-overflow : ellipsis;

        display : -webkit-box;

        -webkit-line-clamp: 3;

        -webkit-box-orient: vertical;

}

猜你喜欢

转载自blog.csdn.net/WangMouMouMouMou/article/details/80341630
今日推荐