How to justify text in text_field_tag

I would like to have the text in a text_field_tag right justified instead of left justified. Is there a way to do this?

Thanks,

Alex

Alex DeCaria wrote:

I would like to have the text in a text_field_tag right justified instead of left justified. Is there a way to do this?

Thanks,

Alex

CSS

Fernando Perez wrote:

Alex DeCaria wrote:

I would like to have the text in a text_field_tag right justified instead of left justified. Is there a way to do this?

Thanks,

Alex

CSS

Thanks Fernando, but can you give me a little more to go on? I'm not familiar with CSS.

Alex

CSS is cascading style sheets - very important to know -

www.blooberry.com has a good overview.

Just quickly you may be looking for something like this in your CSS

INPUT {text-align:right;}

Jeff.Corcoran wrote:

CSS is cascading style sheets - very important to know -

www.blooberry.com has a good overview.

Just quickly you may be looking for something like this in your CSS

INPUT {text-align:right;}

On Jul 13, 9:02�am, Alex DeCaria <rails-mailing-l...@andreas-s.net>

Thanks Jeff! - Alex