How do you change the width and height of Twitter Bootstrap's tooltips?

后端 未结 21 1498
情歌与酒
情歌与酒 2020-12-12 13:26

I created a tooltip using Twitter Bootstrap.

The tooltip is displaying with three lines. However, I would like to display the tooltip with only one line.

How

21条回答
  •  渐次进展
    2020-12-12 13:47

    Set the class to the main tooltip div and for the inner tooltip

    div.tooltip {
        width: 270px;
    }
    
    div.tooltip-inner {
        max-width: 280px;
    }
    

提交回复
热议问题