1. 程式人生 > >css 對超長字符串截斷並做tip顯示

css 對超長字符串截斷並做tip顯示

tip

white-space:nowrap; //禁止文字自動換行

overflow:hidden; //隱藏溢出的文字

text-overflow:ellipsis; //加上省略號

width:300px; //必須為標簽設置寬度

display:inline-block; //行內塊元素。這個屬性值融合了inline 和 block 的特性,即是它既是內聯元素,又 可以設置width和height。


css 對超長字符串截斷並做tip顯示