Make Div as wide as it needs to be

后端 未结 5 613
我在风中等你
我在风中等你 2021-01-01 21:47

To explain my problem, I\'m trying to make a div wide enough to accommodate a dynamically generated title without wrapping it, but the div also has other content, which I wa

5条回答
  •  感动是毒
    2021-01-01 22:10

    For headlines you should use the tags (

    ,

    etc).

    For no text wrap:

    white-space: nowrap;
    

    On the element who's text you don't want to wrap.

    Working Example on jsFiddle

提交回复
热议问题