首页 > 代码库 > 超出部分用省略号代替,鼠标放上去显示多余部分内容

超出部分用省略号代替,鼠标放上去显示多余部分内容

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#overplus { width:100px; overflow:hidden; white-space:nowrap; text-overflow:ellipsis;}
#overplus:hover { width:auto;}
</style>
</head>
<body>
<div id="overplus">我是一部分我是剩余部分</div>
</body>
</html>

超出部分用省略号代替,鼠标放上去显示多余部分内容