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

后端 未结 21 1432
情歌与酒
情歌与酒 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:38

    in bootstrap 3.0.3 you can do it by modifying the popover class

    .popover {
        min-width: 200px;
        max-width: 400px;
    }
    

提交回复
热议问题