I am currently trying to justify text in a textarea, unfortunately the CSS:

text-align: justify;

Doesn't work on the text like center, left and right do. I've tried this in both Firefox 3 and IE 7 with no luck.

Is there any way around this?

link|improve this question

feedback

4 Answers

up vote 1 down vote accepted

i dont think this is possible in the html textarea element. you might be able to use some sort of wysiwyg editor (editable div). ie. fckeditor

link|improve this answer
Thats what I've found as well trawling through Google search results, just hoping that someone here may know of something I might have missed. Thanks. – Matt Jan 9 '09 at 4:28
feedback

I dealt with same issue and found out very stupid solution. Make sure that the text to be displayed falls within the start and end tag elements in the same line and not in the next line

<textarea  name="description" readonly="readonly" rows="4" cols="66">Text aligned toward left</textarea>

and not like

<textarea  name="description" readonly="readonly" rows="4" cols="66">
Text aligned toward left
</textarea>
link|improve this answer
inded there is such issue with the <textarea> – Arce Brito Jun 22 '11 at 16:23
Good Onya mate thanks – 422 Feb 21 at 3:13
feedback

I believe that common practice is to use the TEXTAREA for input without worying about justification; and then, once the input is processed (i.e. the FORM is submitted, or an event of the TEXTAREA is captured), the contents are displayed in a non-editable text element (such as P, SPAN, TD) where the text-align: justify; style attribute will be honored.

link|improve this answer
I agree, the client is after this as part of the design though, so unfortunately that that's not appropriate for the situation. Thanks though. – Matt Jan 9 '09 at 4:27
Then I think the simple answer is NO. A Google search on "textarea justify" shows lots of similar questions with no usable solution except maybe to replace the TEXTAREA with a Rich Text widget. – Ken Paul Jan 9 '09 at 4:32
Thats what I had come up with as well before asking here unfortunately. Thanks for your help. – Matt Jan 11 '09 at 6:24
feedback

Using a common div with contenteditable="true" worked in my case. Doesn't work for most mobile browsers though.

<div contenteditable="true">Some content</div>
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.