Maximum Width of jQuery UI Tooltip widget

前端 未结 8 1515
梦如初夏
梦如初夏 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 00:55

      .ui-tooltip{
          max-width: 800px !important;
          width: auto !important;
          overflow:auto !important;
          }
      .ui-tooltip-content{
          background-color: #fdf8ef;
          }
    

提交回复
热议问题