November 4, 2009
鼓勵此網誌:0
這個作法是在CSS裡,就寫出超過一行寬度的時候自動與"…"刪節號作結尾
不會跳到下一行

【css的部份】
width:50px;
text-overflow:ellipsis;
-o-text-overflow:ellipsis; /*firefox用*/
white-space:nowrap;
overflow:hidden;
註:只適用於單行,多行不適用
註:FIREFOX只會被切掉,但不會出現刪節號
不會跳到下一行

【css的部份】
width:50px;
text-overflow:ellipsis;
-o-text-overflow:ellipsis; /*firefox用*/
white-space:nowrap;
overflow:hidden;
註:只適用於單行,多行不適用
註:FIREFOX只會被切掉,但不會出現刪節號





