how to format a single coulmn to a preset width and wrap text
Hello:
I have an interactive report where I have set the entire report to no-wrap using the following:
<style type="text/css">
table.apexir_WORKSHEET_DATA tr * {
white-space: nowrap;
}
</style>
however one of the cuolmns contains text mainly less than 40 chars and few rows with at least a 100 chars. how can I set this single column to a maximum width of 40 and force the longer rows to wrap the additional text in conjunction with the above setting?
Thanks for the assist.