0

How to set max width of tooltip in primefaces?

<p:tooltip for="#{c.id}_checkBox" value="#{c.tooltipText}"/>

enter image description here

fdurmus77
  • 516
  • 7
  • 21

1 Answers1

5
                            <style type="text/css">
                            .ui-tooltip {
                                    max-width: 400px;
                                    white-space:pre-wrap;
                                }
                        </style>

fdurmus77
  • 516
  • 7
  • 21