How do you disable the title in Twitter Bootstrap's popover plugin?

后端 未结 5 1945
悲哀的现实
悲哀的现实 2021-02-18 13:54

I\'m using popover to display an image which doesn\'t require a title. If you don\'t set \"title\", it still displays an area where the title would be. How do you turn this of

5条回答
  •  深忆病人
    2021-02-18 14:24

    the easy way is to do set height:0px on the class .popover-title and don't use data-original-title

    CSS:

    .popover-title { height: 0px;}
    

提交回复
热议问题