首页htmltext_overflowCSS Property Value - 如何text-overflow: ellipsis; 限制显示字符

CSS Property Value - 如何text-overflow: ellipsis; 限制显示字符

我们想知道如何text-overflow: ellipsis; 限制显示字符。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.test {
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
</style>
</head>
<body>
  <div class="test">This is a test. This is a test.This is a test.</div>
</body>
</html>