CSS: limit element to 1 line

后端 未结 4 1073
清歌不尽
清歌不尽 2021-02-01 01:23

I want to limit a element to display only 1 line of text, with the remainder hidden (overflow:hidden), without setting a specific height. Is this possible with just CSS?

4条回答
  •  爱一瞬间的悲伤
    2021-02-01 01:35

    It is possible:

    element (white-space: nowrap; overflow: scroll;)
    

    Text parsed as HTML or XML is tokenized, which means all runs of whitespace are collapsed to a single space character. This means you will have a single line of text unless you specify something in addition to the overflow declaration that could cause your text to wrap.

    EDIT: I failed to include the necessary write-space: nowrap property, otherwise the default is that a container will scroll vertically opposed to horizontally.

提交回复
热议问题