頁面 CSS樣式控制文本 : 強制不換行,文字溢出顯示省略號

 

 



<style lang="scss" rel="stylesheet/scss">
    .xxxx{

         white-space: nowrap;  

         text-overflow:ellipsis; 

         overflow:hidden;

    }

</style>




註釋:

white-space: nowrap; 文本強制不換行;

text-overflow:ellipsis; 文本溢出顯示省略號;

overflow:hidden; 溢出的部分隱藏;

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章