Add line break within tooltips

后端 未结 27 2508
北恋
北恋 2020-11-28 02:23

How can line breaks be added within a HTML tooltip?

I tried using
and \\n within the tooltip as follows:



        
27条回答
  •  遥遥无期
    2020-11-28 02:35

    You can use bootstrap tooltip, and don't forget to set the html option to true.

    tooltip
    $('#tool').tooltip({
         title: 'line one' +'
    '+ 'line two', html: true });
    
    
    

提交回复
热议问题