Reputation: 516
How to set max width of tooltip in primefaces?
<p:tooltip for="#{c.id}_checkBox" value="#{c.tooltipText}"/>
Upvotes: 0
Views: 7972
Reputation: 516
<style type="text/css">
.ui-tooltip {
max-width: 400px;
white-space:pre-wrap;
}
</style>
Upvotes: 5