fdurmus77
fdurmus77

Reputation: 516

How to set max width of tooltip in primefaces?

How to set max width of tooltip in primefaces?

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

enter image description here

Upvotes: 0

Views: 7972

Answers (1)

fdurmus77
fdurmus77

Reputation: 516

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

Upvotes: 5

Related Questions