文本单行溢出显示省略号
实现文本单行溢出显示,需要给该文本的盒子加一定宽度
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
具体demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>lvyweb</title>
<style>
p{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
width: 200px;
}
</style>
</head>
<body>
<p>实现文本单行溢出显示,需要给该文本的盒子加一定宽度实现文本单行溢出显示,需要给该文本的盒子加一定宽度</p>
</body>
</html>
文本单行溢出显示省略号,鼠标悬停会显示全部,hover的时候设置宽度auto
具体demo
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>lvyweb</title>
<style>
p{
overflow: hidden;
text-overflow:ellipsis;
white-space: nowrap;
width: 200px;
}
p:hover { width:auto; }
</style>
</head>
<body>
<p>实现文本单行溢出显示,需要给该文本的盒子加一定宽度实现文本单行溢出显示,需要给该文本的盒子加一定宽度</p>
</body>
</html>