CSS n行显示不下显示...

<div class="aa">
This is the first section...This is the first section...This is the first section...This is the
first section...This is the first section...This is the first section...This is the first section...This is the
first section...This is the first section...This is the first section...This is the first section...This is the
first section...This is the first section...This is the first section...
</div>

<style>
	.aa {
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2; // n
            width: 540px;
    }
</style>

版权声明:本文为qq_33495944原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。