How to make Twitter Bootstrap tooltips have multiple lines?

后端 未结 6 1138
南笙
南笙 2020-12-07 13:06

I am currently using the below function to create text that will be displayed using Bootstrap’s tooltip plugin. How come multiline tooltips only work with

6条回答
  •  不知归路
    2020-12-07 13:25

    The CSS solution for Angular Bootstrap is

    ::ng-deep .tooltip-inner {
      white-space: pre-wrap;
    }
    

    No need to use a parent element or class selector if you don't need to restrict it's use. Copy/Pasta, and this rule will apply to all sub-components

提交回复
热议问题