页面 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; 溢出的部分隐藏;

 

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