<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, minimal-ui">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<title>css实现多行文字限制显示</title>
<style>
/*
编译的时候,默认会过滤-webkit-box-orient: vertical;导致多行文本省略显示不生效
解决方案:关闭autoprefixer然后再开启并注释掉
*/
#test {
display: box;
display: -webkit-box;
box-orient: vertical;
/* autoprefixer: off */
-webkit-box-orient: vertical;
/* autoprefixer: on */
line-clamp: 2;
-webkit-line-clamp: 2;
overflow: hidden;
text-overflow: ellipsis;
}
</style>
</head>
<body>
<p id="test">多行文字限制显示多行文字限制显示多行文字限制显示多行文字限制显示多行文字限制显示多行文字限制显示多行文字限制显示多行文字限制显示</p>
</body>
</html>