查看文章 |
CSS标题自动截取
2007-01-20 11:54
<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>A very, very, very, very, very, very, very, very, very long text</span> </div> |
最近读者: