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;
        width:300px;
        height:24px;
        display:block;
    }
</style>

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-07
  • 2022-12-23
  • 2021-12-18
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-03-01
  • 2021-10-29
  • 2021-08-24
相关资源
相似解决方案