Maximum Width of jQuery UI Tooltip widget

前端 未结 8 1493
梦如初夏
梦如初夏 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:17

    in script:

    $(elm).tooltip({tooltipClass: "my-tooltip-styling" });
    

    in css:

    .my-tooltip-styling {
          max-width: 600px;
    }
    
    0 讨论(0)
  • 2021-02-07 01:18
    div.ui-tooltip{
    width: 210px; //if fit-content not worked in specifics browsers
    width: fit-content;
    }
    0 讨论(0)
提交回复
热议问题