<html>
<body>
<style>
.ellipsis span {
white-space:nowrap;
text-overflow:ellipsis; /* for internet explorer */
overflow:hidden;
width:190px;
display:block;
}
html>body .ellipsis {
clear:both;
}
html>body .ellipsis span:after {
content: "...";
}
html>body .ellipsis span {
max-width:180px;
width:auto !important;
float:left;
}
</style>
<div class="ellipsis">
<span>www.chenguangyu.com—毛毛虫是怎么渡过面前的大河的?答案长成蝴蝶
</span>
</div>
</body>
</html>