Label above too long - APEX 2.2
600949Nov 15 2007 — edited Nov 19 2007Hi, all,
I have a label that is above a textarea. It's a very long label, and I want it to wrap at a length that's equal to that of the text box. I have many such labels. They just go on and on and on forever. I don't want to have to manually put line breaks into each one, as 1) it's tedious, and 2) it won't work if users increase or decrease their font size. I can write HTML that does this. How can I get the same effect using an APEX textarea and an above label?
I already tried removing the nowrap from the label attributes.
Thanks!
<table width="25%">
<tr>
<td>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
</td>
</tr>
<tr>
<td>
<textarea rows="5" cols="80"></textarea>
</td>
</tr>
</table>