CSS实现文字自动截断

 

<html>
<head>
<title>文字自动截断效果</title>
<style>
div.show{
width:200px;
height:100px;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;
}
</style>
</head>
<body>
<div class="show">文字自动截断效果文字自动截断效果</div>
</body>
</html>

你可能感兴趣的:(css)