如何在Ruby代码中的Label和组合框之间添加空格

时间:2014-11-10 10:30:56

标签: ruby ruby-on-rails-3

我是Ruby的新手,我需要在ruby文件中的Label和Combo框之间添加一个空格。

示例代码:

def render_search_combo_box(project, selected_value=nil)
  return unless User.current.logged?
  s = "<select id='search_options' name='search_options'>"
end

我尝试添加&#39; nbsp;&#39;在选择&#39;之前但没有结果。

提前致谢。

1 个答案:

答案 0 :(得分:0)

我认为,使用CSS解决问题会更好。

例如(在css文件中):

#search_options {margin-left: '10px'}

但是,为什么你不只是使用rails form helper来构建你的表单? 您可以像这样(在视图中)获得相同的结果:

<% if User.current.logged? %>
  <%= select_tag "search_options" %>
<% end %>