hi all,
I have a text_area, and i want make its font size smaller.
<%= form.text_area :myarea, :rows => 20, :cols => 40 %>
how can I do ?
any tips is appreciated.
thanks
hi all,
I have a text_area, and i want make its font size smaller.
<%= form.text_area :myarea, :rows => 20, :cols => 40 %>
how can I do ?
any tips is appreciated.
thanks
Use css and style the textarea with something like
textarea
{
font-size: 8pt;
}
Florian G. wrote:
Use css and style the textarea with something like
textarea
{
font-size: 8pt;
}
it works!
thanks very much !
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs