Maximum Width of jQuery UI Tooltip widget

前端 未结 8 1495
梦如初夏
梦如初夏 2021-02-07 00:50

I use jQuery UI\'s new Tooltip and having trouble with figuring out how to set a maximum width of the tooltip. I guess it should be done with position, but how?

8条回答
  •  执笔经年
    2021-02-07 01:13

    Based on Senni's reply, I added following to a separate CSS-file:

    div.ui-tooltip {
        max-width: 400px;
    }
    

    A sidenote: Make sure your separate CSS follows after the ui-css, otherwise there will be no effect. Otherwise you also could use the !important - marker.

提交回复
热议问题