CSS3之超出隐藏

html

<td ><a class="link"  href="{$vo.link}" target="_blank">{$vo.link}</a></td>

css

<style>
    .link{
        overflow: hidden;
        text-overflow: ellipsis;
        -o-text-overflow: ellipsis;
        white-space:nowrap;
        300px;
        height:24px;
        display:block;
    }
</style>
原文地址:https://www.cnblogs.com/jiqing9006/p/9457142.html