How do I prevent DIV tag starting a new line?

后端 未结 9 1820
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-04 18:42

I want to output a single line of text to the browser that contains a tag. When this is rendered it appears that the DIV causes a new line. How can I include the content in

9条回答
  •  無奈伤痛
    2020-12-04 19:31

    A better way to do a break line is using span with CSS style parameter white-space: nowrap;

    span.nobreak {
      white-space: nowrap;
    }
    
    or
    span.nobreak {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    

    Example directly in your HTML

     YOUR EXTENSIVE TEXT THAT YOU CAN´T BREAK LINE ....
    

提交回复
热议问题