HTML+CSS: How to force div contents to stay in one line?

后端 未结 10 1992
小蘑菇
小蘑菇 2020-11-30 17:52

I have a long text inside a div with defined width:

HTML:

Stack Overflow is the BEST !!!

CSS:



        
10条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-11-30 18:00

    Your HTML code:

    Stack Overflow is the BEST !!!


    CSS:

    div {
        width: 100px;
        white-space:nowrap;
        overflow:hidden;
        text-overflow:ellipsis;
    }
    

    Now the result should be:

    Stack Overf...

提交回复
热议问题