Adding custom class to tooltip

后端 未结 8 992
一生所求
一生所求 2021-02-05 02:04

I want to style(css) some bootstrap-tooltip.js tooltips, without affecting all the tooltips. I have tried many different solutions but i allways end up adding a class to the ele

8条回答
  •  旧时难觅i
    2021-02-05 02:55

    Prior to Bootstrap 4:

    $().tooltip({
      template: '
    ' })

    Bootstrap 4:

    $().tooltip({
      template: ''
    })
    

提交回复
热议问题