css overflow - only 1 line of text

后端 未结 8 1663
别跟我提以往
别跟我提以往 2021-01-30 04:59

I have div with the following css style:

width:335px; float:left; overflow:hidden; padding-left:5px;

When I insert, into that

8条回答
  •  旧巷少年郎
    2021-01-30 05:16

    If you want to indicate that there's still more content available in that div, you may probably want to show the "ellipsis":

    text-overflow: ellipsis;
    

    This should be in addition to white-space: nowrap; suggested by Septnuits.

    Also, make sure you checkout this thread to handle this in Firefox.

提交回复
热议问题