调整 Rails 中 f.text_area 的大小
如何调整 Rails 中 f.text_area
字段的大小?
<%= f.text_area :message, :id => "message_area" %>
:cols => 都不是A、:行=> B
或 :size => “AxB”由于某种原因起作用。我还需要
:id
进行样式设置。
How can I resize the f.text_area
field in rails?
<%= f.text_area :message, :id => "message_area" %>
Neither :cols => A, :rows => B
or :size => "AxB"
work for some reason. Also I need the :id
for styling.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚刚测试过,这适用于 Rails 3(并且也应该适用于 Rails 2)。
Just tested, this works in Rails 3 (and should work in Rails 2 as well).
您可以使用 CSS 来设置文本区域的样式,如下所示:
You could use CSS to style the textarea, just like this: