日期:2014-05-17 浏览次数:20626 次
?
<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>