Reputation: 232
I'm having a problem with my SSRS report.
The data that i'm showing in some of the fields is larger than the max-width of the textbox.
How i can implements something like word-wrap in CSS, so the text can be split in multiple lines?
Upvotes: 0
Views: 632
Reputation: 21758
By default, text boxes will wrap text. Make sure you have not changed the can grow property (it is set to True by default).
If the text is too long to fit, it will increase the height of the text box to accommodate all the text.
Upvotes: 2