I set htmlText property of a TextArea to the following value:

<img src="img.gif" />Some text<br><img src="img.gif" />Some text

The top edge of "Some text" is aligned to the top edge of the corresponging image.

How to align it by bottom edges (the bottom of the text to the bottom of the image)? Is it possible?

Remark: image's height is greater than text's one.

link|improve this question

65% accept rate
feedback

2 Answers

Try this in the HTML text -

<table> <tr> <td> <img src="c:\1.png"/> </td> <td VALIGN="bottom"> Some text </td> </tr> </table
link|improve this answer
Unfortunately, table tag is not supported in Flex renderer. – alexey Apr 24 '09 at 15:08
feedback
up vote 0 down vote accepted

One of the solutions is to use a Canvas over the TextArea

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.