text-overflow:ellipsis實現css文本溢出省略符號

來源:互聯網
上載者:User

在ie中我們只要簡單的利用text-overflow 這個 CSS 屬性實現文本溢出省略符號。

 代碼如下 複製代碼

.entry_title{
 white-space: nowrap;
 overflow: hidden;
 text-overflow: ellipsis;
}

但是在ie之外的瀏覽器就不行了,不過大家可利用php mb_strimwidth,也是按照 中文 2 個位元組,英文 1 個位元組 方式計算之後的,並且如果字數超過截取的要求,這個函數還可以在最後面自動添加‘…’。

 代碼如下 複製代碼

mb_strimwidth($post_excerpt,0,240,'...','utf-8');

注意,最後添加‘utf-8’編碼參數,可以避免中文截取亂碼的問題。

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.